Remote host 'ornithologist'

This commit is contained in:
Fern Garden 2025-07-24 15:12:29 +08:00
parent d362dac716
commit 70e609d18a
2 changed files with 0 additions and 25 deletions

View file

@ -93,10 +93,5 @@
sops-nix.nixosModules.sops
];
})
# Container for automatic deployments.
(mkHost "ornithologist" {
suite = "server/vm";
})
];
}

View file

@ -1,20 +0,0 @@
{pkgs, ...}: {
# Root filesystem.
fileSystems."/" =
{ device = "/dev/disk/by-uuid/11bdddf2-82b9-473d-b2ac-3b58f9f93ee7";
fsType = "ext4";
};
# Swap.
swapDevices =
[ { device = "/dev/disk/by-uuid/2fd2d201-14a2-45f8-abef-a1e57a509fe4"; }
];
# Install some packages.
environment.systemPackages = with pkgs; [
deploy-rs
];
# Allows remote deployment on ARM systems (ie. Raspberry Pi).
boot.binfmt.emulatedSystems = ["aarch64-linux"];
}