1

Home/Servenix: Add agenix secrets

This commit is contained in:
2025-07-09 03:10:47 +02:00
parent b8a485282a
commit 84744ce5fc
2 changed files with 13 additions and 0 deletions

View File

@ -4,6 +4,7 @@
nixosConfig,
config,
lib,
username,
...
}: {
imports = [
@ -12,6 +13,8 @@
config = {
modules = {
# agenix.secrets.${username} = [];
hyprland = {
kb-layout = "us";
kb-variant = "altgr-intl";

View File

@ -3,6 +3,7 @@
nixosConfig,
config,
lib,
username,
...
}: {
imports = [
@ -10,6 +11,15 @@
];
config = {
modules = {
agenix.secrets.${username} = [
"heidi-discord-token"
"kopia-password"
"kopia-server-username"
"kopia-server-password"
];
};
home.packages = with pkgs; [
docker-compose
];