mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
refactor: make the whole thing more generic
This commit is contained in:
12
modules/home-manager/services/default.nix
Normal file
12
modules/home-manager/services/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs, homeDirectory, ... }: {
|
||||
services = {
|
||||
gpg-agent = {
|
||||
enable = true;
|
||||
enableSshSupport = true;
|
||||
pinentryPackage = pkgs.pinentry-gnome3;
|
||||
};
|
||||
# fix pinentry on non-gnome with this in
|
||||
# the system config: services.dbus.packages = with pkgs; [ gcr ];
|
||||
gnome-keyring.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user