Added: ReGreet

This commit is contained in:
DerGrumpf 2025-03-28 11:28:56 +01:00
parent bee4f200b0
commit 982a2628d1
2 changed files with 39 additions and 0 deletions

View File

@ -7,6 +7,7 @@
./hyprpaper.nix
./waybar # Status Bar
./rofi # App Launcher
./regreet # Login
];
}

38
home/hyprland/regreet.nix Normal file
View File

@ -0,0 +1,38 @@
{ pkgs, username ... }: {
#home.packages = [ pkgs.greetd.regreet ];
programs.regreet = {
enable = true;
settings = {
background = {
path = "Pictures/Wallpapers/lucy.jpg";
fit = "Contain";
};
env = {};
GTK = {
application_prefer_dark_theme = true;
cursor_theme_name = "Adwaita";
font_name = "Cantarell 16";
icon_theme_name = "Adwaita";
theme_name = "Adwaita";
};
commands = {
reboot = ["systemctl", "reboot"];
poweroff = ["systemctl", "poweroff"];
x11_prefix = ["startx", "/usr/bin/env"];
};
widget.clock = {
format = "%A %d.%m.%Y %T"; # Sunday 30.03.2025 11:25:17
resolution = "500ms";
timezone = "Europe/Berlin";
label_width = 150;
}
};
}
}