This commit is contained in:
2025-02-06 17:45:39 +02:00
commit a3f3abb460
84 changed files with 5567 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{
lib,
config,
...
}: {
options = {
base16.enable = lib.mkEnableOption "Enable base16 module";
};
config = lib.mkIf config.base16.enable {
colorschemes = {
base16 = {
enable = true;
colorscheme = "ayu-mirage";
};
};
};
}