more updates

This commit is contained in:
Noah Masur
2025-02-05 17:25:29 -05:00
parent bb1a36330b
commit 620c72f731
23 changed files with 423 additions and 280 deletions

View File

@ -1,5 +1,6 @@
{
config,
pkgs,
lib,
...
}:
@ -16,6 +17,13 @@ in
type = lib.types.path;
description = "Wallpaper background image file";
};
gtk.theme = {
name = lib.mkOption {
type = lib.types.str;
default = "Adwaita-dark";
};
package = lib.mkPackageOption pkgs "gnome-themes-extra" { };
};
};
config = lib.mkIf cfg.enable {
@ -34,6 +42,13 @@ in
extraSeatDefaults = ''
greeter-hide-users = false
'';
# Make the login screen dark
greeters.gtk.theme = {
name = cfg.gtk.theme.name;
package = cfg.gtk.theme.package;
};
};
};
};