From 74682751233202187b299e6990cf93018099d2b3 Mon Sep 17 00:00:00 2001 From: Toast Date: Tue, 19 Sep 2023 08:24:39 +0200 Subject: [PATCH] Common: set nixpath to the system flake (again) --- roles/common/programs/nix.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/common/programs/nix.nix b/roles/common/programs/nix.nix index baa1cc9..07e90d7 100755 --- a/roles/common/programs/nix.nix +++ b/roles/common/programs/nix.nix @@ -14,5 +14,7 @@ experimental-features = nix-command flakes # https://dataswamp.org/~solene/2022-07-20-nixos-flakes-command-sync-with-system.html system.flake = systemPkgs; }; + # I removed this in the past since I thought that I didn't need it, but turns out comma does :) + nixPath = [ "nixpkgs=${systemPkgs}" ]; }; }