extract out gpg-agent service
This commit is contained in:
parent
ded7ef42ff
commit
04f6aa74e7
2 changed files with 10 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
services = {
|
services = {
|
||||||
imports = [
|
imports = [
|
||||||
|
./gpg-agent.nix
|
||||||
./spotifyd.nix
|
./spotifyd.nix
|
||||||
];
|
];
|
||||||
blueman-applet.enable = true;
|
blueman-applet.enable = true;
|
||||||
|
|
9
home/services/gpg-agent.nix
Normal file
9
home/services/gpg-agent.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ ... }: {
|
||||||
|
gpg-agent = {
|
||||||
|
enable = true;
|
||||||
|
enableExtraSocket = true;
|
||||||
|
enableScDaemon = true;
|
||||||
|
enableSshSupport = true;
|
||||||
|
pinentryFlavor = "gnome3";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue