Move gpg to its own service
This commit is contained in:
parent
5259082f76
commit
01d16e03c8
3 changed files with 9 additions and 4 deletions
|
@ -7,8 +7,5 @@
|
||||||
extraConfig.safe.directory = "/etc/nixos";
|
extraConfig.safe.directory = "/etc/nixos";
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [ git-crypt ];
|
||||||
git-crypt
|
|
||||||
gnupg
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./easyeffects
|
./easyeffects
|
||||||
|
./gpg
|
||||||
./mpd
|
./mpd
|
||||||
./playerctl
|
./playerctl
|
||||||
];
|
];
|
||||||
|
|
7
modules/home/services/gpg/default.nix
Normal file
7
modules/home/services/gpg/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
services.gpg-agent = {
|
||||||
|
enable = true;
|
||||||
|
enableSshSupport = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue