temp commit

This commit is contained in:
mjallen18
2025-07-16 19:57:33 -05:00
parent 1a254d12c7
commit 6c7c76887b
89 changed files with 4356 additions and 2822 deletions

View File

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

7
overlays/nixpkgs-stable.nix Executable file
View File

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

View File

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