14 lines
364 B
Nix
14 lines
364 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;
|
|
};
|
|
system.stateVersion = "20.09";
|
|
}
|