diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-06-28 18:40:41 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-06-28 18:40:41 -0700 |
commit | e1e35f927f3fd48498b536e12f89e8d9530d3269 (patch) | |
tree | f4104c3b9b698e7b0f5fb6d7c3066eb3d6908b24 /hosts/common/optional/services/wayland.nix | |
parent | 1a3e433297b0ddab65c2c24c9d9876fb1b2b2802 (diff) | |
download | nix-e1e35f927f3fd48498b536e12f89e8d9530d3269.tar nix-e1e35f927f3fd48498b536e12f89e8d9530d3269.tar.gz nix-e1e35f927f3fd48498b536e12f89e8d9530d3269.tar.bz2 nix-e1e35f927f3fd48498b536e12f89e8d9530d3269.tar.lz nix-e1e35f927f3fd48498b536e12f89e8d9530d3269.tar.xz nix-e1e35f927f3fd48498b536e12f89e8d9530d3269.tar.zst nix-e1e35f927f3fd48498b536e12f89e8d9530d3269.zip |
Switch to sddm from greetd
Diffstat (limited to '')
-rw-r--r-- | hosts/common/optional/services/wayland.nix | 48 |
1 files changed, 27 insertions, 21 deletions
diff --git a/hosts/common/optional/services/wayland.nix b/hosts/common/optional/services/wayland.nix index 218857a..0f79412 100644 --- a/hosts/common/optional/services/wayland.nix +++ b/hosts/common/optional/services/wayland.nix @@ -50,18 +50,18 @@ package = pkgs.master.firefox; }; - regreet= { - enable = true; - settings = { - GTK = lib.mkForce { - application_prefer_dark_theme = true; - cursor_theme_name = "catppuccin-mocha-blue-cursors"; - font_name = "Work Sans 16"; - icon_theme_name = "Papirus-Dark"; - theme_name = "catppuccin-mocha-blue-standard"; - }; - }; - }; + #regreet= { + # enable = true; + # settings = { + # GTK = { + # application_prefer_dark_theme = true; + # cursor_theme_name = "catppuccin-mocha-blue-cursors"; + # font_name = "Work Sans 16"; + # icon_theme_name = "Papirus-Dark"; + # theme_name = "catppuccin-mocha-blue-standard"; + # }; + # }; + #}; sway = { enable = true; @@ -71,15 +71,15 @@ waybar.enable = true; }; - services.greetd = { - enable = true; - #settings = { - # default_session = { - # command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd sway"; - # user = "greeter"; - # }; - #}; - }; + #services.greetd = { + # enable = true; + # #settings = { + # # default_session = { + # # command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd sway"; + # # user = "greeter"; + # # }; + # #}; + #}; security = { pam.loginLimits = [ @@ -109,6 +109,12 @@ services = { blueman.enable = true; + + displayManager.sddm = { + enable = true; + wayland.enable = true; + }; + libinput.enable = true; printing.enable = true; }; |