diff options
| author | Franck Cuny <franck@fcuny.net> | 2023-12-08 09:00:57 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2023-12-08 09:00:57 -0800 |
| commit | 7ff5c2e346a8efeba0c27f473271d8298a1266c2 (patch) | |
| tree | a536441a137be3d6122b4d8a247db76f9cd8d12a /hosts/tahoe/boot.nix | |
| parent | build(deps): bump cachix/install-nix-action from 23 to 24 (diff) | |
| download | infra-7ff5c2e346a8efeba0c27f473271d8298a1266c2.tar.gz | |
delete configuration for old machines
These machines are gone, no need to keep the configuration around.
Diffstat (limited to 'hosts/tahoe/boot.nix')
| -rw-r--r-- | hosts/tahoe/boot.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/hosts/tahoe/boot.nix b/hosts/tahoe/boot.nix deleted file mode 100644 index 89bd672..0000000 --- a/hosts/tahoe/boot.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ config, ... }: - -{ - boot = { - kernelParams = [ - # get an IP address on boot, so we can unlock the root disk remotely - "ip=dhcp" - # rotate the screen 90 degree counter clockwise - "fbcon=rotate:1" - ]; - initrd = { - # driver for the NIC, required in order to get an IP address - kernelModules = [ "r8169" ]; - network = { - enable = true; - postCommands = '' - echo "cryptsetup-askpass; exit" > /root/.profile - ''; - ssh = { - enable = true; - port = 2222; - hostKeys = - [ /etc/ssh/ssh_host_ed25519_key /etc/ssh/ssh_host_rsa_key ]; - authorizedKeys = - config.users.users.fcuny.openssh.authorizedKeys.keys; - }; - }; - }; - }; -} |
