From 6830cc6042ee3a64b69b26f167cf2ce89e6c8557 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Sat, 30 Sep 2023 03:33:49 +0200 Subject: [PATCH] refactor: clean up dead code --- home/gaming/default.nix | 2 +- home/shell/nushell.nix | 2 +- services/focalboard.nix | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) 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;