diff options
Diffstat (limited to 'nixos/services/display-manager.nix')
-rw-r--r-- | nixos/services/display-manager.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/nixos/services/display-manager.nix b/nixos/services/display-manager.nix new file mode 100644 index 0000000..edbd360 --- /dev/null +++ b/nixos/services/display-manager.nix @@ -0,0 +1,11 @@ +{ pkgs, lib, ... }: +{ + programs.sway = { + enable = true; + wrapperFeatures.gtk = true; + }; + services.displayManager = { + enable = true; + execCmd = "${pkgs.lemurs}/bin/lemurs --no-logs"; + }; +} |