diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/common.nix | 9 | ||||
-rw-r--r-- | hosts/kay/configuration.nix | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/hosts/common.nix b/hosts/common.nix index 56f2953..8cc13d8 100644 --- a/hosts/common.nix +++ b/hosts/common.nix @@ -3,6 +3,7 @@ let user = config.userdata.user; groups = config.userdata.groups; + host = config.networking.hostName; in { imports = [ @@ -61,6 +62,8 @@ in htop curl neovim + age + sops ]; }; system.stateVersion = "23.05"; @@ -72,6 +75,12 @@ in ]; nixpkgs.overlays = (import ../overlays); + # sops + sops = { + defaultSopsFile = "./${host}/secrets.yaml"; + age.keyFile = "/var/secrets/sops-nix/key.txt"; + }; + # programs programs = { adb.enable = true; diff --git a/hosts/kay/configuration.nix b/hosts/kay/configuration.nix index 8ad42c8..74d49e6 100644 --- a/hosts/kay/configuration.nix +++ b/hosts/kay/configuration.nix @@ -6,5 +6,6 @@ ../common.nix ]; + networking.hostName = "kay"; environment.systemPackages = with pkgs; [ tmux ]; } |