mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
12 lines
121 B
Nix
12 lines
121 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
programs.bat = {
|
||
|
enable = true;
|
||
|
|
||
|
config = {
|
||
|
theme = lib.mkForce "base16";
|
||
|
};
|
||
|
};
|
||
|
}
|