nixos: gen 222 @ nix-pad — 2026-08-03 07:35

26.05.20260724.597283a (Yarara)
This commit is contained in:
2026-08-03 07:35:18 -06:00
parent 1cf9f308e1
commit 5bf0b6acc4
3 changed files with 7 additions and 18 deletions
-1
View File
@@ -5,6 +5,5 @@
./alacritty.nix
./git.nix
./nvim.nix
./zsh.nix
];
}
-17
View File
@@ -1,17 +0,0 @@
{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
initContent = ''
if [ -f "/run/secrets/vaultwarden_clientid" ]; then
export BW_CLIENTID=$(cat /run/secrets/vaultwarden_clientid)
fi
if [ -f "/run/secrets/vaultwarden_clientsecret" ]; then
export BW_CLIENTSECRET=$(cat /run/secrets/vaultwarden_clientsecret)
fi
'';
};
}