update
This commit is contained in:
parent
e25891255a
commit
71528ed396
@ -21,6 +21,7 @@
|
||||
../../modules/home-manager/jq.nix
|
||||
../../modules/home-manager/lazygit.nix
|
||||
../../modules/home-manager/man.nix
|
||||
../../modules/home-manager/gpg.nix
|
||||
];
|
||||
home.username = "mthomson";
|
||||
home.homeDirectory = "/home/mthomson";
|
||||
@ -35,5 +36,11 @@
|
||||
STEAM_EXTRA_COMPAT_TOOLS_PATH = "\${HOME}/.steam/root/compatibilitytools.d";
|
||||
};
|
||||
|
||||
services = {
|
||||
blueman-applet = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
|
22
modules/home-manager/gpg.nix
Normal file
22
modules/home-manager/gpg.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user