mochi/nixos/overlays
Joseph Hanson 290c7d44fc
Some checks failed
Build / nix-build (native-aarch64, varda) (pull_request) Successful in 1m44s
Build / nix-build (native-x86_64, legiondary) (pull_request) Failing after 11s
Tidy
2024-06-30 23:33:01 -05:00
..
warp-terminal Tidy 2024-06-30 23:33:01 -05:00
.gitkeep Customizing and adding another host. 2024-06-20 13:03:44 -05:00
default.nix Add overlay to control the versions myself. 2024-06-30 22:49:28 -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; }));
}