Preserve gpg directory.

This commit is contained in:
Tom Alexander
2024-12-20 16:50:27 -05:00
parent 20c1c46d12
commit 27060fed8d
5 changed files with 52 additions and 5 deletions

View File

@@ -211,10 +211,8 @@ in
environment.systemPackages = with pkgs; [
alacritty
firefox
pcmanfm
];
hardware.graphics.enable = true;
environment.sessionVariables = {
WLR_RENDERER_ALLOW_SOFTWARE = "1";
@@ -231,8 +229,12 @@ in
];
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
environment.persistence."/state" = {
hideMounts = true;
users.talexander = {
files = [
".cache/wofi-drun" # Execution history for wofi to sort results
];
};
};
}