nas overlay

This commit is contained in:
mjallen18
2024-05-05 14:03:16 -05:00
parent 74ae425c7b
commit 040cbfb1de
4 changed files with 371 additions and 62 deletions

10
overlays/default.nix Normal file
View File

@@ -0,0 +1,10 @@
{inputs, ...}: {
nixpkgs-unstable = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
};
}