feat(nix): add linux-builder to darwin

Signed-off-by: Seongmin Lee <git@boltless.me>

boltless.me 546fc335 a61d113a

verified
Changed files
+7
nix
+7
nix/darwin.nix
··· 9 9 pkgs.vim 10 10 pkgs.git 11 11 pkgs.ollama 12 + # used for remote linux deployment 13 + pkgs.nixos-rebuild 12 14 # I don't want to touch this due to current neovim settings. 13 15 # remove it when lux.nvim is out 14 16 (pkgs-unstable.lua5_1.withPackages (ps: with ps; [luarocks])) ··· 40 42 nix.settings.experimental-features = "nix-command flakes"; 41 43 # Enable rosetta binaries 42 44 nix.settings.extra-platforms = "x86_64-darwin aarch64-darwin"; 45 + 46 + nix.settings.trusted-users = [ "@admin" ]; 47 + nix.settings.extra-trusted-users = [ "boltless" ]; 48 + 49 + nix.linux-builder.enable = true; 43 50 44 51 # Enable alternative shell support in nix-darwin. 45 52 # programs.fish.enable = true;