diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-04-29 15:32:28 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-04-29 15:32:28 -0500 |
| commit | 2e0c6ccbbc76cc36e92128aea44e4bdd4e5c3d0a (patch) | |
| tree | 9096774d34661c0ea6f481fd87f20a01d0ea4ed0 /hosts/jupiter/disks.nix | |
| parent | 9c9a49a855951662da62bcdec45f69ddc0099e5c (diff) | |
jupiter officially out of comission
Diffstat (limited to 'hosts/jupiter/disks.nix')
| -rw-r--r-- | hosts/jupiter/disks.nix | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/hosts/jupiter/disks.nix b/hosts/jupiter/disks.nix deleted file mode 100644 index a5b5fae..0000000 --- a/hosts/jupiter/disks.nix +++ /dev/null @@ -1,38 +0,0 @@ -{inputs, ...}: { - imports = [ - inputs.disko.nixosModules.default - ]; - - disko = { - enableConfig = true; - devices = { - disk.main = { - device = "/dev/nvme0n1"; - type = "disk"; - content = { - type = "gpt"; - partitions = { - ESP = { - type = "EF00"; - size = "1G"; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - mountOptions = ["umask=0077"]; - }; - }; - root = { - size = "100%"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/"; - }; - }; - }; - }; - }; - }; - }; -} |
