summaryrefslogtreecommitdiff
path: root/modules/login.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/login.nix')
-rw-r--r--modules/login.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/modules/login.nix b/modules/login.nix
index 3d9fb31..a9beb4c 100644
--- a/modules/login.nix
+++ b/modules/login.nix
@@ -1,7 +1,7 @@
{ pkgs, ... }:
{
- environment.systemPackages = with pkgs; [
+ /* environment.systemPackages = with pkgs; [
greetd.tuigreet
greetd.greetd
];
@@ -14,13 +14,20 @@
user = "greeter";
};
};
+ }; */
+ services.displayManager.sddm = {
+ enable = true;
+ wayland = {
+ enable = true;
+ compositor = "kwin";
+ };
};
services.logind.extraConfig = ''
HandlePowerKey=ignore
'';
- systemd.services.greetd.serviceConfig = {
+ /* systemd.services.greetd.serviceConfig = {
Type = "idle";
StandardInput = "tty";
StandardOutput = "tty";
@@ -28,7 +35,7 @@
TTYReset = true;
TTYVHangup = true;
TTYVTDisallocate = true;
- };
+ }; */
security.polkit.enable = true;