summaryrefslogtreecommitdiff
path: root/modules/core/sops.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-05-04 22:06:38 -0700
committerFuwn <[email protected]>2025-05-04 22:06:38 -0700
commitb3ab73a336fca4c575bb50af5db632f19db3f559 (patch)
tree3b25be164de60bf9036152fc51fa80e2aa611458 /modules/core/sops.nix
parentUTM: Add UTM build host (diff)
downloadnixos-config-b3ab73a336fca4c575bb50af5db632f19db3f559.tar.xz
nixos-config-b3ab73a336fca4c575bb50af5db632f19db3f559.zip
Nara: Set up SOPS
Diffstat (limited to 'modules/core/sops.nix')
-rw-r--r--modules/core/sops.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/core/sops.nix b/modules/core/sops.nix
deleted file mode 100644
index fbf1b6f..0000000
--- a/modules/core/sops.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ pkgs, self, ... }:
-{
- environment.systemPackages = [
- pkgs.sops
- ];
-
- sops = {
- gnupg.sshKeyPaths = [ ];
- secrets.tailscale_authentication_key.sopsFile = "${self}/secrets/hosts.yaml";
-
- age = {
- sshKeyPaths = [ ];
- keyFile = "/var/lib/sops-nix/keys.txt";
- generateKey = true;
- };
- };
-}