feat: 99 annoying bats on the wall, 99 annoying bats

This commit is contained in:
Teesh 2026-02-06 19:46:24 +02:00
parent 0e03137e20
commit 86f07dc1e2

13
modules/base/bat.nix Normal file
View file

@ -0,0 +1,13 @@
{...}: {
flake.modules.nixos.base = {pkgs, ...}: {
programs.bat.enable = true;
environment.shellAliases = {
"cat" = "${pkgs.bat}/bin/bat";
};
};
flake.modules.homeManager.base = {
programs.bat.enable = true;
};
}