aboutsummaryrefslogtreecommitdiff
path: root/hosts/canadian-government-system/disks.nix
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-30 14:47:27 -0400
committerRosa <rosaontheweb@proton.me>2026-03-30 14:47:27 -0400
commit849624093f6afd2c498bbff8662550bf3fd87c33 (patch)
tree4eddc974d9c374ae89226cdd3105fc74b8cb9b6e /hosts/canadian-government-system/disks.nix
parentc47baf373642c7db5e581df889f985bb38397a81 (diff)
nope, the dream really is dead
Diffstat (limited to 'hosts/canadian-government-system/disks.nix')
-rw-r--r--hosts/canadian-government-system/disks.nix82
1 files changed, 0 insertions, 82 deletions
diff --git a/hosts/canadian-government-system/disks.nix b/hosts/canadian-government-system/disks.nix
deleted file mode 100644
index 67b20b8..0000000
--- a/hosts/canadian-government-system/disks.nix
+++ /dev/null
@@ -1,82 +0,0 @@
-{
- disko.devices.disk = {
- boot1 = {
- content = {
- partitions = {
- efi = {
- content = {
- format = "vfat";
- mountOptions = [ "umask=0077" ];
- mountpoint = "/boot";
- type = "filesystem";
- };
-
- size = "512M";
- type = "EF00";
- };
-
- # the root partition is set up in boot2
- root.size = "100%";
- };
-
- type = "gpt";
- };
-
- device = "/dev/sda";
- type = "disk";
- };
-
- boot2 = {
- content = {
- partitions = {
- efi = {
- content = {
- format = "vfat";
- mountOptions = [ "umask=0077" ];
- mountpoint = "/boot";
- type = "filesystem";
- };
-
- size = "512M";
- type = "EF00";
- };
-
- root = {
- content = {
- extraArgs = [
- "-f"
- "-d raid1"
- "/dev/sda2";
- ];
-
- subvolumes = {
- "/nix" = {
- mountOptions = [
- "compress=zstd"
- "noatime"
- ];
-
- mountpoint = "/nix";
- };
-
- "/root" = {
- mountpoint = "/";
- mountOptions = [ "noatime" ];
- };
- };
-
- type = "btrfs";
- };
-
- size = "100%";
- };
- };
-
- type = "gpt";
- };
-
- device = "/dev/sdb";
- type = "disk";
- };
- };
-}