nixos: gen 220 @ nix-pad — 2026-08-03 07:16

26.05.20260724.597283a (Yarara)
This commit is contained in:
2026-08-03 07:16:49 -06:00
parent 6bd39483dd
commit d70b1119ad
8 changed files with 74 additions and 3 deletions
+1
View File
@@ -2,6 +2,7 @@
{
imports = [
./sops.nix
./sudo.nix
./systemd.nix
./users.nix
+10
View File
@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
sops.defaultSopsFile = ../../secrets/secrets.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
sops.secrets."vaultwarden_clientid".owner = config.users.users.jashton.name;
sops.secrets."vaultwarden_clientsecret".owner = config.users.users.jashton.name;
}