infra/nix/os/devices/167.233.1.14/pkg.nix

36 lines
706 B
Nix
Raw Normal View History

{
2023-02-07 18:24:28 +01:00
config,
pkgs,
lib,
...
}: {
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/text-minimal.nix {
inherit pkgs;
extraPackages = [
# required by vscode's remote-ssh plugin
pkgs.nodejs
2020-12-05 02:10:57 +01:00
2023-02-07 18:24:28 +01:00
# allow clipboard exchanges
pkgs.xsel
pkgs.xclip
];
};
2023-02-07 18:24:28 +01:00
nix.buildMachines = [
{
hostName = "localhost";
system = "x86_64-linux";
supportedFeatures = ["kvm" "nixos-test" "big-parallel" "benchmark"];
maxJobs = 4;
}
];
}