mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
c00ebbd691
This works now that stylix switched to using the configuration file instead of the environment variable.
12 lines
121 B
Nix
12 lines
121 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
programs.bat = {
|
|
enable = true;
|
|
|
|
config = {
|
|
theme = lib.mkForce "base16";
|
|
};
|
|
};
|
|
}
|