move nix-your-shell overlay to flake

This commit is contained in:
BuyMyMojo 2025-04-01 09:30:25 +11:00
parent 8ddd026085
commit 5e2376d868
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
2 changed files with 4 additions and 4 deletions

View file

@ -27,7 +27,6 @@
}@inputs:
let
system = "x86_64-linux";
in
{
@ -37,6 +36,7 @@
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [ nix-your-shell.overlays.default ];
};
unstable = import unstable {
inherit system;
@ -44,6 +44,7 @@
};
inherit nix-your-shell;
};
modules = [
./universal.nix
@ -59,6 +60,7 @@
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [ nix-your-shell.overlays.default ];
};
unstable = import unstable {
inherit system;
@ -66,6 +68,7 @@
};
inherit nix-your-shell;
};
modules = [
./universal.nix

View file

@ -8,9 +8,6 @@
}:
{
nixpkgs.overlays = [
nix-your-shell.overlays.default
];
nix.settings.experimental-features = [
"nix-command"