41 lines
986 B
Nix
41 lines
986 B
Nix
{ config, pkgs, device, ... }:
|
|
|
|
{
|
|
stylix = {
|
|
enable = true;
|
|
autoEnable = true;
|
|
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;
|
|
};
|
|
};
|
|
} |