From 1ac072847df6512e47d5513c31887fabe1a28adc Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Sun, 10 May 2026 23:41:48 +0200 Subject: [PATCH] add alternative url for ax; add ruff package; --- home/default.nix | 2 +- nixos/modules/development.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/home/default.nix b/home/default.nix index 9c3b1ce..c1c712d 100644 --- a/home/default.nix +++ b/home/default.nix @@ -73,7 +73,7 @@ xdg.configFile."ax/config.json".text = builtins.toJSON { remote = { - host = "blackpearl.n.eliaskohout.de"; + host = "ax.n.eliaskohout.de"; port = 7000; }; }; diff --git a/nixos/modules/development.nix b/nixos/modules/development.nix index d2277ed..19d9514 100644 --- a/nixos/modules/development.nix +++ b/nixos/modules/development.nix @@ -15,7 +15,7 @@ languagePackages = { rust = with pkgs; [ rustup cargo-deny cargo-edit ]; - python = with pkgs; [ python3 python3Packages.pip python3Packages.virtualenv uv mypy ]; + python = with pkgs; [ python3 python3Packages.pip python3Packages.virtualenv uv mypy ruff ]; nodejs = with pkgs; [ nodejs pnpm ]; go = with pkgs; [ go golangci-lint ]; ruby = with pkgs; [ ruby bundler ];