summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xflake.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix

index d82486e..e658f21 100755 --- a/flake.nix +++ b/flake.nix
@@ -236,7 +236,7 @@ # }; #}; - Rory-desktop = nixpkgs-master.lib.nixosSystem { + Rory-desktop = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ./host/Rory-desktop/configuration.nix @@ -249,8 +249,8 @@ { ... }: { nix = { - registry.nixpkgs.flake = nixpkgs-master; - nixPath = [ "nixpkgs=${nixpkgs-master.outPath}" ]; + registry.nixpkgs.flake = nixpkgs; + nixPath = [ "nixpkgs=${nixpkgs.outPath}" ]; }; } )