diff --git a/home/gaming/default.nix b/home/gaming/default.nix index 2cb992e..f1f3170 100644 --- a/home/gaming/default.nix +++ b/home/gaming/default.nix @@ -1,4 +1,4 @@ -{ config, pkgs, nixosConfig, ... }: +{ pkgs, ... }: { imports = [ ./steam.nix ./lutris.nix ]; diff --git a/home/shell/nushell.nix b/home/shell/nushell.nix index 01ffa8f..44700bc 100644 --- a/home/shell/nushell.nix +++ b/home/shell/nushell.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: let shellAliases = import ./aliases.nix; diff --git a/services/focalboard.nix b/services/focalboard.nix index ec6393a..6e400a5 100644 --- a/services/focalboard.nix +++ b/services/focalboard.nix @@ -3,11 +3,8 @@ let dataDir = "/var/lib/focalboard"; ociBackend = config.virtualisation.oci-containers.backend; - containersHost = "localhost"; port = 8003; domain = "boards.felschr.com"; - dbHost = containersHost; - dbPort = toString config.services.postgresql.port; dbUser = "focalboard"; dbName = "focalboard"; dbPasswordFile = config.age.secrets.focalboard-db-password.path;