summaryrefslogtreecommitdiff
path: root/disks
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-19 07:53:37 -0700
committerFuwn <[email protected]>2024-09-19 07:54:03 -0700
commit3e2f9b079afda61e5b114862df3660ca66063002 (patch)
tree77f65fc77c75e582704b6fffafb3e1b337c3ffe4 /disks
parenthyprland: fix rofi focus (diff)
downloadnixos-config-3e2f9b079afda61e5b114862df3660ca66063002.tar.xz
nixos-config-3e2f9b079afda61e5b114862df3660ca66063002.zip
hosts: update himeji
Diffstat (limited to 'disks')
-rw-r--r--disks/himeji.nix43
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 = "/";
+ };
+ };
+ };
+ };
+ };
+ };
+ };
+}