36 lines
693 B
Nix
36 lines
693 B
Nix
{ inputs, ... }: let
|
|
flavor = "mocha";
|
|
accent = "mauve";
|
|
in {
|
|
den.aspects.catppuccin = {
|
|
nixos = {
|
|
imports = [ inputs.catppuccin.nixosModules.catppuccin ];
|
|
|
|
catppuccin = {
|
|
enable = true;
|
|
flavor = flavor;
|
|
accent = accent;
|
|
|
|
grub.enable = true;
|
|
gitea.enable = true;
|
|
};
|
|
};
|
|
|
|
homeManager = {
|
|
imports = [ inputs.catppuccin.homeModules.catppuccin ];
|
|
|
|
catppuccin = {
|
|
enable = true;
|
|
flavor = flavor;
|
|
accent = accent;
|
|
|
|
firefox.enable = true;
|
|
fish.enable = true;
|
|
librewolf.enable = true;
|
|
vesktop.enable = true;
|
|
zed.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|