diff options
-rw-r--r-- | hosts/common/optional/services/xorg.nix | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/hosts/common/optional/services/xorg.nix b/hosts/common/optional/services/xorg.nix index e41496b..a124998 100644 --- a/hosts/common/optional/services/xorg.nix +++ b/hosts/common/optional/services/xorg.nix @@ -84,15 +84,13 @@ }) ]; - displayManager.session = lib.mkIf (config.networking.hostName != "fangorn") { - [ - { - manage = "desktop"; - name = "xsession"; - start = ''exec $HOME/.xsession''; - } - ]; - }; + displayManager.session = lib.mkIf (config.networking.hostName != "fangorn") [ + { + manage = "desktop"; + name = "xsession"; + start = ''exec $HOME/.xsession''; + } + ]; enable = true; xkb.layout = "us"; |