Move SIIT-DC to Hetzner

This commit is contained in:
Vili Sinervä 2025-06-17 03:04:31 +03:00
parent 04d1047ada
commit 0d53c533b3
Signed by: Vili Sinervä
SSH key fingerprint: SHA256:FladqYjaE4scJY3Hi+gnShZ6ygnTJgixy0I6BAoHyos
3 changed files with 10 additions and 41 deletions

View file

@ -3,7 +3,6 @@
imports = [ imports = [
../../shared/base.nix ../../shared/base.nix
../../shared/hardware/vm.nix ../../shared/hardware/vm.nix
../../shared/disko/hetzner-ext4.nix
../../servers/siit-dc.nix ../../servers/siit-dc.nix
]; ];

View file

@ -19,6 +19,16 @@
boot.kernelModules = [ ]; boot.kernelModules = [ ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/b124e8c9-50d0-4254-bc7d-2784db2f8175";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/95c196c6-803d-4e68-9d31-3843a5260319";
fsType = "ext4";
};
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

View file

@ -1,40 +0,0 @@
{
disko.devices = {
disk = {
main = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
name = "boot";
type = "EF02";
size = "1M";
};
ESP = {
name = "ESP";
type = "EF00";
size = "512M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
root = {
name = "nixos";
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}