mochi/nixos/overlays
Joseph Hanson f4e15b7e90
Some checks failed
Build / nix-build (native-x86_64, gandalf) (push) Failing after 21s
Build / nix-build (native-x86_64, telperion) (push) Successful in 4m50s
Build / nix-build (native-x86_64, shadowfax) (push) Failing after 29m41s
update soft-serve and disable stats server
vscode --> master. update extensions.
2025-03-06 09:44:07 -06:00
..
arr update radarr and arr derivation names 2025-02-19 15:52:40 -06:00
cargo-tauri latest tauri for yaak 2024-10-17 21:43:46 -05:00
coder reformat 2024-12-27 21:30:25 -06:00
smartmontools the previous url was incorrectly formatted to retrieve a more up to date file 2024-09-12 16:09:12 -05:00
talosctl reformat 2024-12-27 21:30:25 -06:00
termius reformat 2024-12-27 21:30:25 -06:00
vivaldi reformat 2024-12-27 21:30:25 -06:00
xpipe reformat 2024-12-27 21:30:25 -06:00
zed-editor reformat 2024-12-27 21:30:25 -06:00
.gitkeep Customizing and adding another host. 2024-06-20 13:03:44 -05:00
default.nix update soft-serve and disable stats server 2025-03-06 09:44:07 -06: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; }));
}