From cacaadb79a73fca27bd8bbc0a33a0713d2379655 Mon Sep 17 00:00:00 2001 From: adikro Date: Sun, 1 Mar 2026 19:57:42 +0100 Subject: removed oci config --- hosts/oci/disko.nix | 77 ----------------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 hosts/oci/disko.nix (limited to 'hosts/oci/disko.nix') diff --git a/hosts/oci/disko.nix b/hosts/oci/disko.nix deleted file mode 100644 index fb01384..0000000 --- a/hosts/oci/disko.nix +++ /dev/null @@ -1,77 +0,0 @@ -{ lib, ... }: -{ - disko.devices.disk.main = { - device = "/dev/sda"; - type = "disk"; - content = { - type = "gpt"; - partitions = { - ESP = { - size = "1G"; - type = "EF00"; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - mountOptions = [ "umask=0077" ]; - }; - }; - root = { - size = "100%"; - content = { - type = lib.mkForce "btrfs"; - extraArgs = [ "-f" ]; - subvolumes = { - "root" = { - mountpoint = lib.mkForce "/"; - mountOptions = [ - "compress=zstd:1" - "discard=async" - "noatime" - ]; - }; - "nix" = { - mountpoint = "/nix"; - mountOptions = [ - "compress=zstd:1" - "discard=async" - "nodev" - "noatime" - ]; - }; - "home" = { - mountpoint = "/home"; - mountOptions = [ - "compress=zstd:1" - "discard=async" - "nosuid" - "nodev" - "noatime" - ]; - }; - "log" = { - mountpoint = "/var/log"; - mountOptions = [ - "compress=zstd:1" - "discard=async" - "nosuid" - "nodev" - "noatime" - ]; - }; - "swap" = { - mountpoint = "/.swapvol"; - mountOptions = [ - "compress=none" - "discard=async" - "nodatacow" - "noatime" - ]; - }; - }; - }; - }; - }; - }; - }; -} -- cgit v1.3