From b458cd0e6b841e6fe5257e851ffe618d10475ba4 Mon Sep 17 00:00:00 2001 From: spl3g Date: Tue, 16 Sep 2025 13:07:19 +0300 Subject: fix: rename the vps server --- nixos/vps/disk-config.nix | 55 ----------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 nixos/vps/disk-config.nix (limited to 'nixos/vps/disk-config.nix') diff --git a/nixos/vps/disk-config.nix b/nixos/vps/disk-config.nix deleted file mode 100644 index a51111a..0000000 --- a/nixos/vps/disk-config.nix +++ /dev/null @@ -1,55 +0,0 @@ -{ lib, ... }: -{ - disko.devices = { - disk.disk1 = { - device = lib.mkDefault "/dev/vda"; - type = "disk"; - content = { - type = "gpt"; - partitions = { - boot = { - name = "boot"; - size = "1M"; - type = "EF02"; - }; - esp = { - name = "ESP"; - size = "500M"; - type = "EF00"; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - }; - }; - root = { - name = "root"; - size = "100%"; - content = { - type = "lvm_pv"; - vg = "pool"; - }; - }; - }; - }; - }; - lvm_vg = { - pool = { - type = "lvm_vg"; - lvs = { - root = { - size = "100%FREE"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/"; - mountOptions = [ - "defaults" - ]; - }; - }; - }; - }; - }; - }; -} -- cgit v1.2.3