diff options
author | Alan Pearce | 2024-06-26 15:31:34 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-26 19:26:36 +0200 |
commit | c666d32db1f8b9aca7c02450cc6a454d850fc1db (patch) | |
tree | 7361e9ba26ee877b5c7644ed2a782f6ce3e94353 /system | |
parent | 3dc6940449d3061ce510ab65dde18ad593102a4c (diff) | |
download | nixfiles-c666d32db1f8b9aca7c02450cc6a454d850fc1db.tar.lz nixfiles-c666d32db1f8b9aca7c02450cc6a454d850fc1db.tar.zst nixfiles-c666d32db1f8b9aca7c02450cc6a454d850fc1db.zip |
mba: remove linux-builder setup
Diffstat (limited to 'system')
-rw-r--r-- | system/mba.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/system/mba.nix b/system/mba.nix index abed520b..ca1b76d8 100644 --- a/system/mba.nix +++ b/system/mba.nix @@ -37,27 +37,4 @@ supportedFeatures = [ ]; } ]; - - nix.linux-builder = { - maxJobs = 4; - config = { pkgs, ... }: { - virtualisation = { - darwin-builder = { - diskSize = 60 * 1024; - memorySize = 8 * 1024; - }; - cores = 4; - }; - # don't go crazy with this setup, it rebuilds the VM - imports = [ - ./settings/configuration/user.nix - ./settings/programs/shell.nix - ]; - environment.systemPackages = with pkgs; [ - kitty.terminfo - hello - ]; - }; - systems = [ "aarch64-linux" ]; - }; } |