diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-21 22:33:33 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-21 22:33:33 -0400 |
commit | b8c3752242ba2362a875dba555ff2527043bfe66 (patch) | |
tree | 8e6c0758546c262c22e04acc1913b0e1ac8ec5c9 /programs/sops/default.nix | |
parent | run wl-clip-persist (diff) | |
download | dotfiles-nix-b8c3752242ba2362a875dba555ff2527043bfe66.tar.gz dotfiles-nix-b8c3752242ba2362a875dba555ff2527043bfe66.tar.bz2 dotfiles-nix-b8c3752242ba2362a875dba555ff2527043bfe66.zip |
move shiniji wireguard secretes to only shinji host (refactor hosts)
Diffstat (limited to 'programs/sops/default.nix')
-rw-r--r-- | programs/sops/default.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/programs/sops/default.nix b/programs/sops/default.nix deleted file mode 100644 index e5b3e6f..0000000 --- a/programs/sops/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - config, - pkgs, - inputs, - ... -}: let - isEd25519 = k: k.type == "ed25519"; - getKeyPath = k: k.path; - keys = builtins.filter isEd25519 config.services.openssh.hostKeys; -in { - imports = [ - inputs.sops-nix.nixosModules.sops - ]; - - environment.systemPackages = with pkgs; [ - sops - ]; - - sops = { - defaultSopsFile = ../../secrets.yaml; - - gnupg.home = config.homePath + "/.gnupg"; - gnupg.sshKeyPaths = []; - - secrets = { - freyanetWg = {}; - tinternetWg = {}; - }; - }; -} |