push
This commit is contained in:
35
modules/core/theme/catppuccin.nix
Normal file
35
modules/core/theme/catppuccin.nix
Normal file
@@ -0,0 +1,35 @@
|
||||
{ inputs, ... }: let
|
||||
flavor = "mocha";
|
||||
accent = "mauve";
|
||||
in {
|
||||
den.aspects.catppuccin = {
|
||||
nixos = {
|
||||
imports = [ inputs.nix-flatpak.nixosModules.nix-flatpak ];
|
||||
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
flavor = flavor;
|
||||
accent = accent;
|
||||
|
||||
grub.enable = true;
|
||||
gitea.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
homeManager = {
|
||||
imports = [ inputs.catppuccin.nixosModules.catppuccin ];
|
||||
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
flavor = flavor;
|
||||
accent = accent;
|
||||
|
||||
firefox.enable = true;
|
||||
fish.enable = true;
|
||||
librewolf.enable = true;
|
||||
vesktop.enable = true;
|
||||
zed.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
47
modules/core/theme/stylix.nix
Normal file
47
modules/core/theme/stylix.nix
Normal file
@@ -0,0 +1,47 @@
|
||||
{ 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user