diff options
| author | Fuwn <[email protected]> | 2024-09-19 07:53:37 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-19 07:54:03 -0700 |
| commit | 3e2f9b079afda61e5b114862df3660ca66063002 (patch) | |
| tree | 77f65fc77c75e582704b6fffafb3e1b337c3ffe4 /disks | |
| parent | hyprland: fix rofi focus (diff) | |
| download | nixos-config-3e2f9b079afda61e5b114862df3660ca66063002.tar.xz nixos-config-3e2f9b079afda61e5b114862df3660ca66063002.zip | |
hosts: update himeji
Diffstat (limited to 'disks')
| -rw-r--r-- | disks/himeji.nix | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/disks/himeji.nix b/disks/himeji.nix new file mode 100644 index 0000000..56e72cc --- /dev/null +++ b/disks/himeji.nix @@ -0,0 +1,43 @@ +{ + disko.devices = { + disk = { + main = { + type = "disk"; + device = "/dev/sda"; + + content = { + type = "gpt"; + + partitions = { + boot = { + size = "1M"; + type = "EF02"; + priority = 1; + }; + + ESP = { + size = "512M"; + type = "EF00"; + + content = { + type = "filesystem"; + format = "vfat"; + mountpoint = "/boot"; + }; + }; + + root = { + size = "100%"; + + content = { + type = "filesystem"; + format = "ext4"; + mountpoint = "/"; + }; + }; + }; + }; + }; + }; + }; +} |