From c38acc6dce1075ae7e73dedf018be69202900054 Mon Sep 17 00:00:00 2001 From: beeb5k Date: Wed, 2 Sep 2026 10:16:21 +0530 Subject: oixos --- hosts/oixos/disko.nix | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 hosts/oixos/disko.nix (limited to 'hosts/oixos/disko.nix') diff --git a/hosts/oixos/disko.nix b/hosts/oixos/disko.nix new file mode 100644 index 0000000..e77f368 --- /dev/null +++ b/hosts/oixos/disko.nix @@ -0,0 +1,36 @@ +{ + disko.devices = { + disk.main = { + type = "disk"; + device = "/dev/sda"; + + 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 = "ext4"; + mountpoint = "/"; + }; + }; + }; + }; + }; + }; +} -- cgit v1.3.1