temp commit
This commit is contained in:
@@ -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
7
overlays/nixpkgs-stable.nix
Executable file
@@ -0,0 +1,7 @@
|
||||
{ inputs, ... }:
|
||||
final: _prev: {
|
||||
stable = import inputs.nixpkgs-stable {
|
||||
system = final.system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
}
|
||||
7
overlays/nixpkgs-unstable.nix
Normal file
7
overlays/nixpkgs-unstable.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ inputs, ... }:
|
||||
final: _prev: {
|
||||
unstable = import inputs.nixpkgs {
|
||||
system = final.system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user