This commit is contained in:
Michael Thomson 2025-04-06 20:27:52 -04:00
parent e25891255a
commit 71528ed396
2 changed files with 29 additions and 0 deletions

View File

@ -21,6 +21,7 @@
../../modules/home-manager/jq.nix ../../modules/home-manager/jq.nix
../../modules/home-manager/lazygit.nix ../../modules/home-manager/lazygit.nix
../../modules/home-manager/man.nix ../../modules/home-manager/man.nix
../../modules/home-manager/gpg.nix
]; ];
home.username = "mthomson"; home.username = "mthomson";
home.homeDirectory = "/home/mthomson"; home.homeDirectory = "/home/mthomson";
@ -35,5 +36,11 @@
STEAM_EXTRA_COMPAT_TOOLS_PATH = "\${HOME}/.steam/root/compatibilitytools.d"; STEAM_EXTRA_COMPAT_TOOLS_PATH = "\${HOME}/.steam/root/compatibilitytools.d";
}; };
services = {
blueman-applet = {
enable = true;
};
};
programs.home-manager.enable = true; programs.home-manager.enable = true;
} }

View File

@ -0,0 +1,22 @@
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
pinentry-gtk2
];
programs = {
gpg = {
enable = true;
};
};
services = {
gpg-agent = {
enable = true;
pinentryPackage = pkgs.pinentry-gtk2;
};
};
}