Rename nix-builder to builder

This commit is contained in:
Julian Mutter 2024-11-29 21:44:13 +01:00
parent 38cac91b71
commit 65e4352f56
3 changed files with 3 additions and 3 deletions

View File

@ -144,7 +144,7 @@
profiles.system = {
sshUser = "root";
user = "root";
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos inputs.self.nixosConfigurations.nix-builder;
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos inputs.self.nixosConfigurations.builder;
# confirmTimeout = 90; # default: 30s; raspberrypi takes a little longer restarting services
};
};

View File

@ -1,4 +1,4 @@
# sudo nixos-rebuild switch --flake .#nix-builder --target-host root@192.168.3.118
# sudo nixos-rebuild switch --flake .#builder --target-host root@192.168.3.118
# or
# deploy .#builder
{ config, pkgs, ... }:
@ -12,7 +12,7 @@
# Emulated systems used as alternative to cross-compiling
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
networking.hostName = "nix-builder";
networking.hostName = "builder";
networking.networkmanager.enable = true;
time.timeZone = "Europe/Berlin";