This commit is contained in:
Martin Benonisen 2024-04-19 12:31:32 +02:00
parent 7b70cfa70e
commit 2cd1b2aa00
Signed by: mbeno
SSH Key Fingerprint: SHA256:iAzOA1WUAxocdh/WRWXcSg5nw2dJ1aDCvPuT+3ZjkwI
3 changed files with 13 additions and 1 deletions

View File

@ -14,11 +14,20 @@
]; ];
}; };
}; };
programs.thunar.enable = true;
programs.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;
pinentryFlavor = "curses"; pinentryFlavor = "curses";
enableSSHSupport = true; enableSSHSupport = true;
}; };
boot.binfmt.registrations.appimage = {
wrapInterpreterInShell = false;
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic";
offset = 0;
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
magicOrExtension = ''\x7fELF....AI\x02'';
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
xdg-utils xdg-utils
pass pass
@ -42,6 +51,7 @@
wget wget
v4l-utils v4l-utils
nmap nmap
wineWowPackages.stable
]; ];
systemd = { systemd = {

View File

@ -17,6 +17,7 @@
]; ];
userSettings = { userSettings = {
"window.titleBarStyle" = "custom"; "window.titleBarStyle" = "custom";
"editor.formatOnSave" = true;
}; };
}; };
} }

View File

@ -20,6 +20,7 @@
autoload -Uz promptinit autoload -Uz promptinit
promptinit promptinit
prompt agnoster prompt agnoster
source ~/.config/source/tsd-artifacts
''; '';
zplug = { zplug = {
enable = true; enable = true;