diff options
author | Emile <git@emile.space> | 2024-09-29 00:01:35 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-09-29 00:01:35 +0200 |
commit | 322ad293850d4669f24c9ef03f4fd3cbe7e3050a (patch) | |
tree | 4cfed9cf603acf30e42735c9ea48b2c16e768e2f /nix/hosts/caladan/darwin-configuration.nix | |
parent | b64366e37017b5f4643ebc5dec8331b47f0d2780 (diff) |
not using build machines, as it let to some locking issues...
Diffstat (limited to 'nix/hosts/caladan/darwin-configuration.nix')
-rw-r--r-- | nix/hosts/caladan/darwin-configuration.nix | 60 |
1 files changed, 33 insertions, 27 deletions
diff --git a/nix/hosts/caladan/darwin-configuration.nix b/nix/hosts/caladan/darwin-configuration.nix index 9931b08..de94487 100644 --- a/nix/hosts/caladan/darwin-configuration.nix +++ b/nix/hosts/caladan/darwin-configuration.nix @@ -3,6 +3,8 @@ { imports = [ ./overlay.nix ]; + system.stateVersion = 5; + users.users.emile = { name = "emile"; home = "/Users/emile"; @@ -49,49 +51,53 @@ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" - "nix-cache.emile.space:3xzJknXMsR/EL3SBTu6V6oCOkjxe6MgJm0nOrElW33A=" + # "nix-cache.emile.space:3xzJknXMsR/EL3SBTu6V6oCOkjxe6MgJm0nOrElW33A=" ]; substituters = [ "https://cache.nixos.org" "https://nix-community.cachix.org" "https://cache.garnix.io" - "https://nix-cache.emile.space" + # "https://nix-cache.emile.space" ]; experimental-features = [ "nix-command" "flakes" ]; + + # don't use the globally defined flakes, as pulling from github for each shell invocation + # is slow + flake-registry = ""; }; distributedBuilds = true; buildMachines = [ - { - hostName = "corrino.emile.space"; - system = "x86_64-linux"; - maxJobs = 16; - speedFactor = 2; - - # Feature | Derivations requiring it - # ----------------|----------------------------------------------------- - # kvm | Everything which builds inside a vm, like NixOS tests - # nixos-test | Machine can run NixOS tests - # big-parallel | kernel config, libreoffice, evolution, llvm and chromium. - # benchmark | Machine can generate metrics (Means the builds usually - # | takes the same amount of time) - - # cat /etc/nix/machines - # root@corrino x86_64-linux /home/nix/.ssh/id_ed25519 8 1 kvm,benchmark - - supportedFeatures = [ - "nixos-test" - "benchmark" - "big-parallel" - "kvm" - ]; - mandatoryFeatures = [ ]; - } + # { + # hostName = "corrino.emile.space"; + # system = "x86_64-linux"; + # maxJobs = 16; + # speedFactor = 2; + + # # Feature | Derivations requiring it + # # ----------------|----------------------------------------------------- + # # kvm | Everything which builds inside a vm, like NixOS tests + # # nixos-test | Machine can run NixOS tests + # # big-parallel | kernel config, libreoffice, evolution, llvm and chromium. + # # benchmark | Machine can generate metrics (Means the builds usually + # # | takes the same amount of time) + + # # cat /etc/nix/machines + # # root@corrino x86_64-linux /home/nix/.ssh/id_ed25519 8 1 kvm,benchmark + + # supportedFeatures = [ + # "nixos-test" + # "benchmark" + # "big-parallel" + # "kvm" + # ]; + # mandatoryFeatures = [ ]; + # } ]; }; |