Files
nixos-config/modules/overlays/default.nix

20 lines
410 B
Nix
Raw Normal View History

2025-09-13 02:38:36 -04:00
{
...
}:
{
nixpkgs.overlays = [
(import ./heybrochecklog.nix)
(self: super: {
# battery-status = prev.writeShellApplication {
# name = "battery-status";
# text = builtins.readFile ./battery-status.sh;
# };
check-capslock = super.writeShellApplication {
name = "check-capslock";
text = builtins.readFile ./check-capslock.sh;
};
})
2025-09-13 02:38:36 -04:00
];
}