mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 16:40:14 +00:00
more updates
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user