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 = {
|
programs.regreet = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = regreetWrapper;
|
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 = {
|
settings = {
|
||||||
background = {
|
background = {
|
||||||
path = cfg.wallpaper;
|
path = cfg.wallpaper;
|
||||||
fit = "Cover";
|
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 = {
|
commands = {
|
||||||
reboot = [
|
reboot = [
|
||||||
"systemctl"
|
"systemctl"
|
||||||
|
|
Loading…
Reference in a new issue