Dump nixos config after scrubing

This commit is contained in:
jmug
2025-05-03 23:42:03 -07:00
commit 5fa4c76c24
854 changed files with 30072 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ inputs, ... }:
{
imports = [
inputs.sops-nix.homeManagerModules.sops
];
sops = {
age.keyFile = "/home/jmug/.config/sops/age/keys.txt";
defaultSopsFile = ../secrets.yaml;
validateSopsFiles = false;
secrets = {
"private_keys/jmug" = {
path = "/home/jmug/.ssh/id_jmug";
};
"private_keys/matcha" = {
path = "/home/jmug/.ssh/id_matcha";
};
};
};
}