48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ inputs, ... }: {
|
|
den.aspects.stylix = {
|
|
homeManager = { pkgs, ... }: {
|
|
imports = [
|
|
(inputs.stylix.homeModules.stylix or {})
|
|
];
|
|
|
|
stylix = {
|
|
enable = true;
|
|
autoEnable = false;
|
|
polarity = "dark";
|
|
|
|
# catppuccin mocha
|
|
base16Scheme = {
|
|
base00 = "1E1E2E";
|
|
base01 = "181825";
|
|
base02 = "313244";
|
|
base03 = "45475A";
|
|
base04 = "585B70";
|
|
base05 = "CDD6F4";
|
|
base06 = "F5E0DC";
|
|
base07 = "B4BEFE";
|
|
base08 = "F38BA8";
|
|
base09 = "FAB387";
|
|
base0A = "F9E2AF";
|
|
base0B = "A6E3A1";
|
|
base0C = "94E2D5";
|
|
base0D = "89B4FA";
|
|
base0E = "CBA6F7";
|
|
base0F = "F2CDCD";
|
|
};
|
|
|
|
fonts.emoji = {
|
|
name = "Twitter Color Emoji";
|
|
package = pkgs.twitter-color-emoji;
|
|
};
|
|
|
|
targets = {
|
|
vesktop.enable = true;
|
|
gnome.enable = true;
|
|
gtk.enable = true;
|
|
firefox.enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|