nixos-config/modules/home/micro/default.nix

12 lines
174 B
Nix
Raw Normal View History

2023-12-16 15:51:18 +01:00
{ ... }:
{
programs.micro = {
enable = true;
settings = {
"colorscheme" = "catppuccin-mocha";
};
};
2023-12-16 15:55:53 +01:00
xdg.configFile."micro".source = ./config;
2023-12-16 15:51:18 +01:00
}