diff --git a/dev_system.nix b/dev_system.nix index 1f9c4d1..700dbb1 100644 --- a/dev_system.nix +++ b/dev_system.nix @@ -39,7 +39,7 @@ in home = "/home/pipeline"; description = "User used by forgejo runners to connect to this system"; extraGroups = [ "docker" ]; - openssh.authorizedKeys.keyFiles = [ config.sops.secrets."foo".path ]; + openssh.authorizedKeys.keyFiles = [ config.sops.secrets."example".path ]; }; }; } diff --git a/dummy-hardware.nix b/dummy-hardware.nix deleted file mode 100644 index 08ab31e..0000000 --- a/dummy-hardware.nix +++ /dev/null @@ -1,14 +0,0 @@ -# TODO: Copy paste after install nixos, this should include `hardware-configuration.nix`s contents -{ - boot.loader.systemd-boot.enable = true; - - fileSystems."/" = { - device = "/dev/disk/bazqux"; - fsType = "ext4"; - }; - - fileSystems."/boot" = { - device = "/dev/disk/foobar"; - fsType = "vfat"; - }; -} diff --git a/runner_system.nix b/runner_system.nix index d05f992..eba4130 100644 --- a/runner_system.nix +++ b/runner_system.nix @@ -37,6 +37,11 @@ in "ubuntu-22.04:docker://node:16-bullseye" "ubuntu-20.04:docker://node:16-bullseye" ]; + settings = { + runner = { + capacity = 4; + }; + }; }; }; };