move gpg management to home-manager
This commit is contained in:
parent
1a2c5f66b8
commit
4194c4c2ce
2 changed files with 8 additions and 5 deletions
|
|
@ -16,9 +16,4 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.gnupg.agent = {
|
|
||||||
enable = true;
|
|
||||||
pinentryFlavor = "gnome3";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -67,10 +67,18 @@
|
||||||
signByDefault = true;
|
signByDefault = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
gpg = {
|
||||||
|
enable = true;
|
||||||
|
homedir = "${config.xdg.dataHome}/gnupg";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
clipmenu.enable = true;
|
clipmenu.enable = true;
|
||||||
|
gpg-agent = {
|
||||||
|
enable = true;
|
||||||
|
pinentryFlavor = "gnome3";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.".local/bin/ipc-bridge.exe".source = builtins.fetchurl {
|
home.file.".local/bin/ipc-bridge.exe".source = builtins.fetchurl {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue