remove private cache
This commit is contained in:
parent
feefa56ea0
commit
6691cc402d
@ -1,31 +1,20 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
nix.distributedBuilds = true;
|
nix.distributedBuilds = false;
|
||||||
nix.buildMachines = [
|
|
||||||
{
|
|
||||||
hostName = "red";
|
|
||||||
systems = ["aarch64-linux"];
|
|
||||||
maxJobs = 24;
|
|
||||||
speedFactor = 30;
|
|
||||||
supportedFeatures = ["nixos-test" "benchmark" "big-parallel" "kvm"];
|
|
||||||
protocol = "ssh-ng";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
substituters = ["https://cache-nix.project2.xyz/uconsole" "https://nixcache.trustno1.corp/"];
|
substituters = ["https://cache-nix.project2.xyz/uconsole"];
|
||||||
trusted-substituters = ["https://cache-nix.project2.xyz/uconsole"];
|
trusted-substituters = ["https://cache-nix.project2.xyz/uconsole"];
|
||||||
trusted-public-keys = ["uconsole:t2pv3NWEtXCYY0fgv9BB8r9tRdK+Tz7HYhGq9bXIIck="];
|
trusted-public-keys = ["uconsole:t2pv3NWEtXCYY0fgv9BB8r9tRdK+Tz7HYhGq9bXIIck="];
|
||||||
experimental-features = ["nix-command" "flakes"];
|
experimental-features = ["nix-command" "flakes"];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
users.users.oom = {
|
|
||||||
isNormalUser = true;
|
|
||||||
extraGroups = ["wheel"];
|
|
||||||
};
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
pkgs.vim
|
pkgs.vim
|
||||||
pkgs.alejandra
|
pkgs.alejandra
|
||||||
pkgs.mc
|
pkgs.mc
|
||||||
];
|
];
|
||||||
boot.supportedFilesystems.zfs = false;
|
boot.supportedFilesystems.zfs = false;
|
||||||
|
users.users.oom = {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = ["wheel"];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user