dots/modules/linux/login.nix
2025-05-03 16:31:41 +10:00

13 lines
193 B
Nix

{ config, lib, pkgs, ... }:
{
# display manager
programs.regreet = {
enable = true;
settings = {
GTK = {
application_prefer_dark_theme = true;
};
};
};
}