mirror of
https://github.com/sstent/nixos-cluster.git
synced 2026-01-25 14:42:55 +00:00
14 lines
333 B
Nix
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;
|
|
};
|
|
};
|
|
}
|