infra/nix/os/devices/steveej-t480s-work/pkg.nix
Stefan Junker 522d7279bd nix: set NIX_PATH per device versions at buildtime
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.
2020-10-16 22:31:01 +02:00

12 lines
356 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-fullblown.nix { inherit pkgs; };
services.teamviewer.enable = true;
system.stateVersion = "19.09";
}