Files
nixos-cluster/overlays/default.nix
2025-08-14 20:05:50 +00:00

14 lines
333 B
Nix

# This file defines overlays
# ex
{inputs, ...}: {
#When applied, the unstable nixpkgs set (declared in the flake inputs) will
#be accessible through 'pkgs.unstable'
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
};
}