diff options
author | Alan Pearce | 2017-09-15 14:01:10 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-15 14:01:10 +0200 |
commit | 6e62d660060b6661ffce847979783999692aa267 (patch) | |
tree | f0bcd50ed8a641c7ec7d6daf1f5507e7e21685cc | |
parent | 28e8cdf197e28662d2933daa2a742cff91ed05af (diff) | |
download | nixos-configuration-6e62d660060b6661ffce847979783999692aa267.tar.lz nixos-configuration-6e62d660060b6661ffce847979783999692aa267.tar.zst nixos-configuration-6e62d660060b6661ffce847979783999692aa267.zip |
window-manager: Use LightDM instead of the deprecated Slim
-rw-r--r-- | modules/window-manager.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/window-manager.nix b/modules/window-manager.nix index b8cbb85..c159374 100644 --- a/modules/window-manager.nix +++ b/modules/window-manager.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: { services.xserver.displayManager = { - slim = { + lightdm = { enable = true; }; }; |