mochi/nixos/overlays
2024-06-22 08:49:32 -05:00
..
.gitkeep Customizing and adding another host. 2024-06-20 13:03:44 -05:00
default.nix clean up 2024-06-22 08:49:32 -05:00
README.md Customizing and adding another host. 2024-06-20 13:03:44 -05:00

Adding overlays

Overlays should be added as individual nix files to ./nixos/overlays with format

final: prev: {
    hello = (prev.hello.overrideAttrs (oldAttrs: { doCheck = false; }));
}