From d30321f88b414fa1499c831748a039f0ca9c46ba Mon Sep 17 00:00:00 2001 From: tzlil Date: Tue, 1 Aug 2023 13:50:36 +0300 Subject: dont need vm host --- hosts/vm/disko.nix | 52 ---------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 hosts/vm/disko.nix (limited to 'hosts/vm/disko.nix') diff --git a/hosts/vm/disko.nix b/hosts/vm/disko.nix deleted file mode 100644 index b7785d9..0000000 --- a/hosts/vm/disko.nix +++ /dev/null @@ -1,52 +0,0 @@ -{inputs, ...}: let - device = "/dev/sda"; -in { - imports = [ - inputs.disko.nixosModules.disko - ]; - - disko.devices = { - disk.${baseNameOf device} = { - inherit device; - type = "disk"; - content = { - type = "table"; - format = "gpt"; - partitions = [ - { - type = "partition"; - name = "ESP"; - start = "1MiB"; - end = "512MiB"; - bootable = true; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - }; - } - { - name = "nix"; - type = "partition"; - start = "512M"; - end = "100%"; - part-type = "primary"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/nix"; - }; - } - ]; - }; - }; - nodev."/" = { - fsType = "tmpfs"; - mountOptions = [ - "size=3G" - "defaults" - "mode=755" - ]; - }; - }; -} -- cgit 1.4.1