initial
This commit is contained in:
17
config/colorschemes/base16.nix
Normal file
17
config/colorschemes/base16.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user