Merge remote-tracking branch 'origin/nixos' into nixos-work

This commit is contained in:
Moritz Böhme 2023-02-26 12:24:43 +01:00
commit 29731c75c0
35 changed files with 1531 additions and 408 deletions

View file

@ -15,7 +15,7 @@
my.programs.hyprland.nvidiaSupport = true;
# KERNEL
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelPackages = pkgs.linuxPackages_6_1; # HACK to get nvidia kernel package to build
# BOOT
boot = {

View file

@ -107,22 +107,6 @@
wantedBy = [ "multi-user.target" ];
};
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "builder";
system = "x86_64-linux";
maxJobs = 6;
speedFactor = 2;
supportedFeatures = [ "nixos.test" "benchmark" "big-parallel" "kvm" ];
}
];
extraOptions = ''
builders-use-substitutes = true
'';
};
programs.ssh.extraConfig = ''
Host builder
Hostname 192.168.0.14