Skip to content

Commit 40be840

Browse files
committed
DROP
1 parent e80b6f4 commit 40be840

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

hosts/build03/configuration.nix

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{ inputs, ... }:
22
{
33
imports = [
4-
inputs.srvos.nixosModules.mixins-nginx
4+
#inputs.srvos.nixosModules.mixins-nginx
55
inputs.srvos.nixosModules.hardware-hetzner-online-amd
66
inputs.self.nixosModules.common
77
inputs.self.nixosModules.disko-zfs
8-
inputs.self.nixosModules.buildbot
8+
#inputs.self.nixosModules.buildbot
99
inputs.self.nixosModules.builder
10-
inputs.self.nixosModules.hercules-ci
11-
inputs.self.nixosModules.watch-store
10+
#inputs.self.nixosModules.hercules-ci
11+
#inputs.self.nixosModules.watch-store
1212
./builders.nix
1313

14-
inputs.self.nixosModules.github-org-backup
15-
inputs.self.nixosModules.hydra
16-
inputs.self.nixosModules.nur-update
17-
./postgresql.nix
14+
#inputs.self.nixosModules.github-org-backup
15+
#inputs.self.nixosModules.hydra
16+
#inputs.self.nixosModules.nur-update
17+
#./postgresql.nix
1818
];
1919

2020
systemd.network.networks."10-uplink".networkConfig.Address = "2a01:4f9:3b:2946::1/64";

modules/nixos/common/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{ config, inputs, pkgs, ... }:
22
{
33
imports = [
4-
./auto-upgrade.nix
4+
#./auto-upgrade.nix
55
./comin.nix
66
../../shared/known-hosts.nix
77
../../shared/nix-daemon.nix
8-
./reboot.nix
8+
#./reboot.nix
99
./security.nix
1010
./sops-nix.nix
1111
./users.nix

tasks.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,9 @@ def install(c: Any, flake_attr: str, hostname: str) -> None:
161161
return
162162
with TemporaryDirectory() as tmpdir:
163163
decrypt_host_key(flake_attr, tmpdir)
164-
flags = "--debug --no-reboot --option accept-flake-config true"
164+
flags = (
165+
"--build-on-remote --debug --no-reboot --option accept-flake-config true"
166+
)
165167
c.run(
166168
f"nix run --inputs-from . nixpkgs#nixos-anywhere -- {hostname} --extra-files {tmpdir} --flake .#{flake_attr} {flags}",
167169
echo=True,

0 commit comments

Comments
 (0)