feat(hosts/server): adding the secrets to the configuration

This commit is contained in:
Raphael 2025-10-16 16:30:34 +02:00
parent 7e594e5869
commit c1b3df9e32
No known key found for this signature in database
3 changed files with 26 additions and 0 deletions

View file

@ -2,6 +2,7 @@
config,
pkgs,
lib,
inputs,
...
}:
@ -62,11 +63,13 @@
];
};
environment.variables.AGE_KEY_FILE = "/root/.config/age/keys.txt";
programs = {
zsh.enable = true;
};
environment.systemPackages = with pkgs; [
age
bat
cairo
dconf
@ -102,5 +105,7 @@
xsel
yarn
zsh
] ++ [
inputs.agenix.packages.${pkgs.system}.agenix
];
}