aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/prometheus/disks.nix
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-05-21 21:39:31 -0700
committerMark Nipper <nipsy@bitgnome.net>2026-05-21 21:39:31 -0700
commit86607cc679f76c74fc5b31e58d473210634e9d3d (patch)
tree6b339f85a8667214e982346f000e07a0519cf51d /hosts/prometheus/disks.nix
parentc4157b439b4705becf48314fea6139da8a495354 (diff)
downloadnix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.gz
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.bz2
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.lz
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.xz
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.zst
nix-86607cc679f76c74fc5b31e58d473210634e9d3d.zip
Remove prometheusHEADmaster
Diffstat (limited to 'hosts/prometheus/disks.nix')
-rw-r--r--hosts/prometheus/disks.nix101
1 files changed, 0 insertions, 101 deletions
diff --git a/hosts/prometheus/disks.nix b/hosts/prometheus/disks.nix
deleted file mode 100644
index c58effa..0000000
--- a/hosts/prometheus/disks.nix
+++ /dev/null
@@ -1,101 +0,0 @@
-{
- disko.devices = {
- disk = {
- nvme0n1 = {
- type = "disk";
- device = "/dev/disk/by-id/nvme-SPCC_M.2_PCIe_SSD_WWDD241018006012188";
- content = {
- type = "gpt";
- partitions = {
- ESP = {
- size = "1G";
- type = "EF00";
- content = {
- type = "filesystem";
- format = "vfat";
- mountpoint = "/efiboot/efi1";
- mountOptions = [ "X-mount.mkdir" "umask=0077" ];
- extraArgs = [ "-nESP1" ];
- };
- };
- swap = {
- size = "16G";
- type = "8200";
- content = {
- type = "swap";
- extraArgs = [ "-L swap" ];
- };
- };
- zfs = {
- size = "100%";
- content = {
- type = "zfs";
- pool = "rpool";
- };
- };
- };
- };
- };
- };
- zpool = {
- rpool = {
- type = "zpool";
- rootFsOptions = {
- acltype = "posixacl";
- canmount = "off";
- compression = "on";
- dnodesize = "auto";
- relatime = "on";
- xattr = "sa";
- };
- options = {
- ashift = "12";
- autotrim = "on";
- };
- datasets = {
- "local" = {
- type = "zfs_fs";
- options.mountpoint = "none";
- };
- "local/root" = {
- type = "zfs_fs";
- options.mountpoint = "legacy";
- mountpoint = "/";
- };
- "local/nix" = {
- type = "zfs_fs";
- options = {
- atime = "off";
- mountpoint = "legacy";
- };
- mountpoint = "/nix";
- };
- "user" = {
- type = "zfs_fs";
- options.mountpoint = "none";
- };
- "user/home" = {
- type = "zfs_fs";
- options.mountpoint = "legacy";
- mountpoint = "/home";
- };
- "user/home/root" = {
- type = "zfs_fs";
- options.mountpoint = "legacy";
- mountpoint = "/root";
- };
- "user/home/nipsy" = {
- type = "zfs_fs";
- options.mountpoint = "legacy";
- mountpoint = "/home/nipsy";
- };
- "user/home/trent" = {
- type = "zfs_fs";
- options.mountpoint = "legacy";
- mountpoint = "/home/trent";
- };
- };
- };
- };
- };
-}