diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-09 17:16:57 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-09 17:16:57 -0800 |
commit | bac10e111c0f5882cc4e1f86d0dd1b05fdb9d6e5 (patch) | |
tree | 2e10cb7122b42b2f126478cda67656765fc0915b /modules/desktop | |
parent | ssh: new module for managing ssh (diff) | |
download | world-bac10e111c0f5882cc4e1f86d0dd1b05fdb9d6e5.tar.gz |
hosts: remove / clean code
There's a lot of commented stuff I don't need, and move things that are configured in the host into modules, which will improve re-usability and readability of this configuration.
Diffstat (limited to 'modules/desktop')
-rw-r--r-- | modules/desktop/xserver.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/desktop/xserver.nix b/modules/desktop/xserver.nix index 894b39b..c19948f 100644 --- a/modules/desktop/xserver.nix +++ b/modules/desktop/xserver.nix @@ -21,6 +21,14 @@ }; }; + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; + + environment.sessionVariables.TERMINAL = [ "alacritty" ]; + environment.sessionVariables.TERM = [ "xterm-256color" ]; + services.gnome.gnome-keyring.enable = true; services.gvfs.enable = true; } |