Previously all devices would have NIX_PATH set on the common verion file defindd in *nix/variables/versions.nix*. Now NIX_PATH is populated with the versions of the respective device.
10 lines
286 B
Nix
10 lines
286 B
Nix
{ pkgs
|
|
, ...
|
|
}:
|
|
|
|
{
|
|
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
|
|
nixPath = (import ../../../default.nix { versionsPath = ./versions.nix; }).nixPath;
|
|
};
|
|
home-manager.users.steveej = import ../../../home-manager/configuration/graphical-removable.nix { inherit pkgs; };
|
|
}
|