feature(modules): split configuration into nix modules and home-manager modules #2

Merged
aaron merged 34 commits from feature/modularize into main 2025-12-30 17:51:30 +00:00
2 changed files with 7 additions and 2 deletions
Showing only changes of commit 0509b11c00 - Show all commits

View File

@@ -2,8 +2,14 @@
{ {
# enable gnupg agent # enable gnupg agent
services.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;
enableSSHSupport = true; enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-curses;
}; };
environment.systemPackages = with pkgs; [
gnupg
pinentry-curses
];
} }

View File

@@ -11,7 +11,6 @@
file file
ghostty ghostty
git git
gnupg
imagemagick imagemagick
imv imv
iperf3 iperf3