diff --git a/nixos/flake.nix b/nixos/flake.nix index 88eb525..743694a 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -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 diff --git a/nixos/universal.nix b/nixos/universal.nix index 837a185..f565004 100644 --- a/nixos/universal.nix +++ b/nixos/universal.nix @@ -8,9 +8,6 @@ }: { - nixpkgs.overlays = [ - nix-your-shell.overlays.default - ]; nix.settings.experimental-features = [ "nix-command"