From 64215b708fb23480b30eb3420793dd96ca62aba3 Mon Sep 17 00:00:00 2001 From: Chris van der Loo Date: Thu, 20 Aug 2026 09:37:30 -0400 Subject: [PATCH] make more pi friendly --- modules/home/fish.nix | 6 ++++-- modules/hosts/pi.nix | 9 +++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/modules/home/fish.nix b/modules/home/fish.nix index b96c084..2c1a2bf 100644 --- a/modules/home/fish.nix +++ b/modules/home/fish.nix @@ -22,7 +22,10 @@ in programs.fd.enable = true; programs.git.enable = true; - programs.gh.enable = true; + programs.gh = { + enable = true; + settings.aliases.co = "pr checkout"; + }; programs.eza = { enable = true; enableFishIntegration = true; @@ -31,7 +34,6 @@ in programs.fish = { enable = true; - generateCompletions = true; functions = { fish_greeting = ""; diff --git a/modules/hosts/pi.nix b/modules/hosts/pi.nix index 76150d9..ef2b494 100644 --- a/modules/hosts/pi.nix +++ b/modules/hosts/pi.nix @@ -11,6 +11,15 @@ stateVersion = "26.05"; }; + nix = { + package = pkgs.nix; + settings = { + cores = 2; + max-jobs = 1; + http-connections = 8; + }; + }; + programs.fish.plugins = [ { name = "nix-env"; -- 2.51.2