diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-02-12 13:47:59 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-02-12 13:47:59 -0800 |
| commit | 8ed3dfc9ebc52a50c3e6d4623204847822944422 (patch) | |
| tree | 5ecaf4eb3719f6d60e471775cd6de5da7cb78b46 /modules/desktop/xserver.nix | |
| parent | configs: move personal configuration with user (diff) | |
| download | infra-8ed3dfc9ebc52a50c3e6d4623204847822944422.tar.gz | |
move configurations and modules around
Sorry, this is a mess, hopefully the last one.
Diffstat (limited to 'modules/desktop/xserver.nix')
| -rw-r--r-- | modules/desktop/xserver.nix | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/modules/desktop/xserver.nix b/modules/desktop/xserver.nix deleted file mode 100644 index 1b96d03..0000000 --- a/modules/desktop/xserver.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ config, pkgs, lib, ... }: - -{ - services.xserver = { - enable = true; - layout = "us"; - xkbOptions = "eurosign:e,ctrl:swapcaps"; - libinput.enable = true; - - desktopManager = { - xterm.enable = false; - }; - - displayManager = { - lightdm.enable = true; - defaultSession = "none+i3"; - }; - - windowManager = { - i3.enable = true; - }; - }; - - 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; -} |
