mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
mauville: use light theme
This commit is contained in:
parent
1b29782fc3
commit
e03e94d36d
|
@ -11,9 +11,62 @@
|
|||
home-manager = {
|
||||
sharedModules = [
|
||||
{
|
||||
programs.vscode.userSettings = {
|
||||
"editor.fontSize" = "16";
|
||||
};
|
||||
xdg.userDirs.music = "/mnt/Media/Music";
|
||||
alyraffauf.desktop.hyprland.autoSuspend = false;
|
||||
alyraffauf.desktop.sway.autoSuspend = false;
|
||||
alyraffauf.desktop.theme = lib.mkForce {
|
||||
enable = true;
|
||||
gtk = {
|
||||
name = "Catppuccin-Latte-Compact-Mauve-Light";
|
||||
package = pkgs.catppuccin-gtk.override {
|
||||
accents = ["mauve"];
|
||||
size = "compact";
|
||||
variant = "latte";
|
||||
tweaks = ["normal"];
|
||||
};
|
||||
};
|
||||
qt = {
|
||||
name = "Catppuccin-Latte-Mauve";
|
||||
package = pkgs.catppuccin-kvantum.override {
|
||||
accent = "Mauve";
|
||||
variant = "Latte";
|
||||
};
|
||||
};
|
||||
iconTheme = {
|
||||
name = "Papirus-Light";
|
||||
package = pkgs.catppuccin-papirus-folders.override {
|
||||
flavor = "latte";
|
||||
accent = "mauve";
|
||||
};
|
||||
};
|
||||
cursorTheme = {
|
||||
name = "Catppuccin-Latte-Dark-Cursors";
|
||||
size = 32;
|
||||
package = pkgs.catppuccin-cursors.latteDark;
|
||||
};
|
||||
font = {
|
||||
name = "NotoSans Nerd Font";
|
||||
size = 14;
|
||||
package = pkgs.nerdfonts.override {fonts = ["Noto"];};
|
||||
};
|
||||
terminalFont = {
|
||||
name = "NotoSansM Nerd Font";
|
||||
size = 14;
|
||||
package = pkgs.nerdfonts.override {fonts = ["Noto"];};
|
||||
};
|
||||
colors = {
|
||||
preferDark = false;
|
||||
text = "#4c4f69";
|
||||
background = "#eff1f5";
|
||||
primary = "#8839ef";
|
||||
secondary = "#04a5e5";
|
||||
inactive = "#626880";
|
||||
shadow = "#1A1A1A";
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
users.aly = {
|
||||
|
|
Loading…
Reference in a new issue