This commit is contained in:
2025-08-14 20:05:50 +00:00
parent 00c61a2730
commit ded46ebce2
11 changed files with 113 additions and 67 deletions

13
overlays/default.nix Normal file
View File

@@ -0,0 +1,13 @@
# 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;
};
};
}