regreet: Update config to use new options
This commit is contained in:
parent
713c4d75d6
commit
5ae4b596aa
1 changed files with 27 additions and 8 deletions
|
@ -29,20 +29,39 @@ in
|
|||
programs.regreet = {
|
||||
enable = true;
|
||||
package = regreetWrapper;
|
||||
theme = {
|
||||
name = "Orchis-Dark";
|
||||
package = pkgs.orchis-theme.override {
|
||||
tweaks = [
|
||||
"compact"
|
||||
"macos"
|
||||
];
|
||||
border-radius = 5;
|
||||
};
|
||||
};
|
||||
|
||||
iconTheme = {
|
||||
name = "elementary";
|
||||
package = pkgs.pantheon.elementary-icon-theme;
|
||||
};
|
||||
|
||||
cursorTheme = {
|
||||
name = "catppuccin-mocha-dark-cursors";
|
||||
package = pkgs.catppuccin-cursors.mochaDark;
|
||||
};
|
||||
|
||||
font = {
|
||||
name = "Monaspace Neon";
|
||||
size = 16;
|
||||
package = pkgs.monaspace;
|
||||
};
|
||||
|
||||
settings = {
|
||||
background = {
|
||||
path = cfg.wallpaper;
|
||||
fit = "Cover";
|
||||
};
|
||||
|
||||
GTK = {
|
||||
application_prefer_dark_theme = true;
|
||||
theme_name = "Orchis-Dark";
|
||||
cursor_theme = "Catppuccin-Mocha-Dark-Cursors";
|
||||
icon_theme_name = "elementary";
|
||||
font_name = "Monaspace Neon 16";
|
||||
};
|
||||
|
||||
commands = {
|
||||
reboot = [
|
||||
"systemctl"
|
||||
|
|
Loading…
Reference in a new issue