move nix-your-shell overlay to flake
This commit is contained in:
parent
8ddd026085
commit
5e2376d868
2 changed files with 4 additions and 4 deletions
|
@ -27,7 +27,6 @@
|
||||||
}@inputs:
|
}@inputs:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -37,6 +36,7 @@
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
|
overlays = [ nix-your-shell.overlays.default ];
|
||||||
};
|
};
|
||||||
unstable = import unstable {
|
unstable = import unstable {
|
||||||
inherit system;
|
inherit system;
|
||||||
|
@ -44,6 +44,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit nix-your-shell;
|
inherit nix-your-shell;
|
||||||
|
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./universal.nix
|
./universal.nix
|
||||||
|
@ -59,6 +60,7 @@
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
|
overlays = [ nix-your-shell.overlays.default ];
|
||||||
};
|
};
|
||||||
unstable = import unstable {
|
unstable = import unstable {
|
||||||
inherit system;
|
inherit system;
|
||||||
|
@ -66,6 +68,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit nix-your-shell;
|
inherit nix-your-shell;
|
||||||
|
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./universal.nix
|
./universal.nix
|
||||||
|
|
|
@ -8,9 +8,6 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
nixpkgs.overlays = [
|
|
||||||
nix-your-shell.overlays.default
|
|
||||||
];
|
|
||||||
|
|
||||||
nix.settings.experimental-features = [
|
nix.settings.experimental-features = [
|
||||||
"nix-command"
|
"nix-command"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue