aboutsummaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-11-02 14:20:57 -0800
committerFranck Cuny <franck@fcuny.net>2025-11-02 14:20:57 -0800
commit9fa94af7140afb7c9fcced8aa1fb20abb81c5955 (patch)
tree74a2b33354d3cd15aa58fd7be7d33c8cc550c463 /profiles
parentcleanup nixos related configurations (diff)
downloadinfra-9fa94af7140afb7c9fcced8aa1fb20abb81c5955.tar.gz
add helpers to build remotely with nixos
Diffstat (limited to 'profiles')
-rw-r--r--profiles/defaults.nix1
-rw-r--r--profiles/remote-builder.nix (renamed from profiles/nix/remote-builder.nix)4
2 files changed, 3 insertions, 2 deletions
diff --git a/profiles/defaults.nix b/profiles/defaults.nix
index 80292b6..573bf68 100644
--- a/profiles/defaults.nix
+++ b/profiles/defaults.nix
@@ -103,6 +103,7 @@
security.sudo.wheelNeedsPassword = false;
environment.systemPackages = with pkgs; [
+ bottom
curl
dysk
fd
diff --git a/profiles/nix/remote-builder.nix b/profiles/remote-builder.nix
index 50d3e84..3aa772f 100644
--- a/profiles/nix/remote-builder.nix
+++ b/profiles/remote-builder.nix
@@ -13,7 +13,7 @@
"x86_64-linux"
];
- maxJobs = 1;
+ maxJobs = 4;
supportedFeatures = [
"nixos-test"
@@ -26,7 +26,7 @@
programs.ssh.extraConfig = ''
Host builder
User builder
- HostName vm-synology
+ HostName rivendell
IdentityFile ${config.age.secrets.ssh-remote-builder.path}
'';
}