remove deck host

This commit is contained in:
Yan Lin 2025-11-18 22:01:37 +01:00
parent f0b597aa61
commit e6804624b5
8 changed files with 3 additions and 274 deletions

View file

@ -1,47 +0,0 @@
# Disko configuration for Steam Deck
# Following the partitioning scheme from https://heywoodlh.io/nixos-steamdeck
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
# EFI System Partition
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "fmask=0077" "dmask=0077" ];
};
};
# Swap partition
swap = {
size = "8G";
content = {
type = "swap";
resumeDevice = true;
};
};
# Root partition - takes remaining space
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}