chore(ops): move nixos-tvix-cache to ops/machines
Change-Id: Id112f4e9ef195f9366a11f7b0dce326e7951fb49 Reviewed-on: https://cl.snix.dev/c/snix/+/30142 Tested-by: besadii Reviewed-by: Ryan Lahfa <masterancpp@gmail.com> Autosubmit: Florian Klink <flokli@flokli.de>
This commit is contained in:
parent
9caae9114e
commit
c3de9e21eb
10 changed files with 9 additions and 17 deletions
|
|
@ -1,62 +0,0 @@
|
|||
# Disk /dev/nvme0n1: 1024 GB (=> 953 GiB)
|
||||
# Disk /dev/nvme1n1: 1024 GB (=> 953 GiB)
|
||||
# Disk /dev/sda: 22 TB (=> 20 TiB)
|
||||
# Disk /dev/sdb: 22 TB (=> 20 TiB)
|
||||
# Disk /dev/sdc: 22 TB (=> 20 TiB)
|
||||
# Disk /dev/sdd: 22 TB (=> 20 TiB)
|
||||
#
|
||||
# # Installation
|
||||
# 1. Comment out the fileSystems
|
||||
# 2. Bootstrap the machine with `clan machines tvix-cache-install`
|
||||
# 3. Do the btrfs partitioning by hand (because it's not supported by Disko)
|
||||
# a. `mkfs.btrfs -m raid1 -d single /dev/sd{a,b,c,d} --label tank -f`
|
||||
# b. `mkdir /tank && mount /dev/disk/by-label/tank /tank`
|
||||
# 4. Uncomment the fileSystems section below
|
||||
# 5. Re-deploy
|
||||
#
|
||||
# TODO: make use of /dev/nvme1n1
|
||||
{
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.loader.systemd-boot.configurationLimit = 10;
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.timeout = 3;
|
||||
boot.supportedFilesystems = [ "btrfs" ];
|
||||
|
||||
# TODO: comment me during install
|
||||
fileSystems."/tank" = {
|
||||
fsType = "btrfs";
|
||||
device = "/dev/disk/by-label/tank";
|
||||
};
|
||||
|
||||
disko.devices = {
|
||||
disk = {
|
||||
main = {
|
||||
type = "disk";
|
||||
device = "/dev/nvme0n1";
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
ESP = {
|
||||
size = "1G";
|
||||
type = "EF00";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "vfat";
|
||||
mountpoint = "/boot";
|
||||
mountOptions = [ "umask=0077" ];
|
||||
};
|
||||
};
|
||||
root = {
|
||||
size = "100%";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "btrfs";
|
||||
mountpoint = "/";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue