mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
fixed nixpath
This commit is contained in:
parent
83031aace9
commit
0d5159cf24
@ -47,8 +47,6 @@
|
||||
dates = "weekly";
|
||||
options = "--delete-older-than 30d";
|
||||
};
|
||||
nixPath = [ "nixpkgs=${pkgs}" ];
|
||||
registry.nixpkgs.flake = pkgs;
|
||||
};
|
||||
nixpkgs = {
|
||||
overlays = [ flakes.emacs-overlay.overlay flakeOutputs.overlay ] ++ extraOverlays;
|
||||
|
||||
@ -21,7 +21,11 @@ let
|
||||
inherit system;
|
||||
modules = [
|
||||
configuration
|
||||
{ nix.package = pkgs.legacyPackages.${system}.nixUnstable; }
|
||||
{ nix = {
|
||||
package = pkgs.legacyPackages.${system}.nixUnstable;
|
||||
nixPath= [ "nixpkgs=${pkgs}" ];
|
||||
registry.nixpkgs.flake = pkgs;}
|
||||
;}
|
||||
] ++ extraModules
|
||||
++ flakes.nixpkgs.lib.mapAttrsToList (_: module: module)
|
||||
flakeOutputs.nixosModules;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user