From d75e7f0a98941e0deb248184134d1508c10c6b2c Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Fri, 27 Dec 2024 09:28:33 +0000 Subject: [PATCH] added regreet greeter in place of SDDM which was removed in a previous commit --- home-manager/hyprland.nix | 2 +- hosts/gabbielaptop/configuration.nix | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/home-manager/hyprland.nix b/home-manager/hyprland.nix index a8e476b..922e61e 100644 --- a/home-manager/hyprland.nix +++ b/home-manager/hyprland.nix @@ -7,7 +7,7 @@ xwayland.enable = true; systemd.variables = ["--all"]; # Hopefully will help with the backlight/slider issue in waybar, so far has not worked, but good to keep in # Autostart using systemd - systemd.enable = true; + systemd.enable = false; settings = { # Monitor config for home desk layout monitor = [ diff --git a/hosts/gabbielaptop/configuration.nix b/hosts/gabbielaptop/configuration.nix index c727db0..a6b51fa 100644 --- a/hosts/gabbielaptop/configuration.nix +++ b/hosts/gabbielaptop/configuration.nix @@ -91,8 +91,15 @@ # Enable PPD to improve battery life maybe services.power-profiles-daemon.enable = true; - # Enable the ly TUI display manager - services.displayManager.ly.enable = true; + # Enable greetd with ReGreet + services.greetd = { + enable = true; +# settings.default_session = { +# command = "${pkgs.regreet}/bin/regreet"; +# user = "greeter"; +# }; + }; + programs.regreet.enable = true; # Enable the Hyprland WM functionality for NixOS (xdg portals etc.) programs.hyprland.enable = true;