restructure x11
This commit is contained in:
parent
a4a16cc97c
commit
8b6dd79516
19 changed files with 406 additions and 312 deletions
15
home/common-linux.nix
Normal file
15
home/common-linux.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, config, lib, ... }:
|
||||
with lib; {
|
||||
imports = [ ./modules/linux/graphical ./modules/X11/xfce4-notifyd.nix ];
|
||||
config = (mkIf (strings.hasSuffix "linux" pkgs.system) {
|
||||
## Gnome-keyring
|
||||
services.gnome-keyring = {
|
||||
enable = true;
|
||||
components = [ "pkcs11" "secrets" "ssh" ];
|
||||
};
|
||||
services.gpg-agent.enable = true;
|
||||
services.gpg-agent.enableSshSupport = true;
|
||||
services.gpg-agent.pinentryFlavor = "gtk2";
|
||||
});
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue