infra/nix/os/devices/steveej-t14/pkg.nix

16 lines
401 B
Nix
Raw Normal View History

2023-02-07 18:24:28 +01:00
{pkgs, ...}: {
2022-10-31 11:04:38 +01:00
nixpkgs.config.packageOverrides = pkgs:
with pkgs; {
2023-02-07 18:24:28 +01:00
nixPath =
(import ../../../default.nix {
versionsPath = ./versions.nix;
})
.nixPath;
2022-10-31 11:04:38 +01:00
};
2023-02-07 18:24:28 +01:00
home-manager.users.steveej = import ../../../home-manager/configuration/graphical-fullblown.nix {
inherit pkgs;
};
2020-12-21 14:35:50 +01:00
services.teamviewer.enable = true;
system.stateVersion = "20.09";
}