nixos/modules/system/catppuccin.nix
2024-05-23 11:59:18 +08:00

22 lines
469 B
Nix

inputs:
{
config =
{
catppuccin.flavor = "latte";
console.catppuccin.enable = true;
boot.loader.grub.catppuccin.enable = true;
nixos.user.sharedModules =
[{
config =
{
programs =
{
bat = { enable = true; catppuccin.enable = true; };
btop = { enable = true; catppuccin.enable = true; };
};
xdg = { enable = true; configFile."btop/btop.conf".force = true; };
};
}];
};
}