remove (co)lima
2 files changed, 21 insertions(+), 49 deletions(-)
M user/hosts/marvin.nix → user/hosts/marvin.nix
@@ -62,26 +62,6 @@ }; }; }; - launchd.agents.colima = { - enable = true; - config = { - ProgramArguments = [ - "/Users/alan/.local/state/nix/profile/bin/colima" - "start" - ]; - RunAtLoad = true; - # It doesn't run in the foreground, yet... - # KeepAlive = true; - WorkingDirectory = "/Users/alan"; - StandardOutPath = "/Users/alan/Library/Logs/colima.log"; - StandardErrorPath = "/Users/alan/Library/Logs/colima.log"; - EnvironmentVariables = { - HOME = "/Users/alan"; - XDG_CONFIG_HOME = config.xdg.configHome; - }; - }; - }; - targets.darwin.defaults = { NSGlobalDomain = { AppleKeyboardUIMode = 2;
M user/settings/development/base.nix → user/settings/development/base.nix
@@ -4,42 +4,34 @@ pkgs, ... }: { - home.packages = - with pkgs; - [ - shellcheck - shfmt - dockerfile-language-server - yaml-language-server - lua-language-server - taplo # toml - marksman + home.packages = with pkgs; [ + shellcheck + shfmt + dockerfile-language-server + yaml-language-server + lua-language-server + taplo # toml + marksman - just - just-lsp - remake + just + just-lsp + remake - curlHTTP3 - xh - htmlq - jq - watchexec - entr - personal.projectdo + curlHTTP3 + xh + htmlq + jq + watchexec + entr + personal.projectdo - litecli + litecli - docker-credential-helpers - ] - ++ (lib.optionals stdenv.isDarwin [ - lima - colima - docker-client - ]); + docker-credential-helpers + ]; home.sessionVariables = { FLY_NO_UPDATE_CHECK = "1"; - LIMA_INSTANCE = "nixos"; }; programs.emacs.extraPackages =