diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix index ce3de020..0da387ec 100644 --- a/home/christoph/nixinator/default.nix +++ b/home/christoph/nixinator/default.nix @@ -4,6 +4,7 @@ nixosConfig, config, lib, + username, ... }: { imports = [ @@ -12,6 +13,8 @@ config = { modules = { + # agenix.secrets.${username} = []; + hyprland = { kb-layout = "us"; kb-variant = "altgr-intl"; diff --git a/home/christoph/servenix/default.nix b/home/christoph/servenix/default.nix index f949e539..da46c0c7 100644 --- a/home/christoph/servenix/default.nix +++ b/home/christoph/servenix/default.nix @@ -3,6 +3,7 @@ nixosConfig, config, lib, + username, ... }: { imports = [ @@ -10,6 +11,15 @@ ]; config = { + modules = { + agenix.secrets.${username} = [ + "heidi-discord-token" + "kopia-password" + "kopia-server-username" + "kopia-server-password" + ]; + }; + home.packages = with pkgs; [ docker-compose ];