nixos/modules/system/catppuccin.nix

21 lines
422 B
Nix
Raw Normal View History

2024-04-17 08:58:46 +08:00
inputs:
{
config =
{
2024-05-23 11:59:18 +08:00
catppuccin.flavor = "latte";
2024-04-17 08:58:46 +08:00
console.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; };
2024-04-17 08:58:46 +08:00
};
}];
};
}