services update

This commit is contained in:
cnst
2024-07-06 10:57:11 +02:00
parent 82b9d4bf24
commit 7531426abe
6 changed files with 55 additions and 40 deletions

16
nixos/services/greetd.nix Normal file
View File

@@ -0,0 +1,16 @@
{pkgs, ...}: {
services.greetd = {
enable = true;
settings = {
# AUTOLOGIN
# initial_session = {
# command = "${pkgs.hyprland}/bin/Hyprland";
# user = "cnst";
# };
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet -r --remember-session";
user = "greeter";
};
};
};
}