nix/nixos/hosts/steamdeck/disks.nix

71 lines
2 KiB
Nix
Raw Normal View History

2024-04-24 06:13:51 +02:00
{
services.btrfs.autoScrub.enable = true;
services.btrfs.autoScrub.interval = "weekly";
2024-04-27 01:11:29 +02:00
disko.devices.disk = {
2024-04-25 14:51:20 +02:00
nvme0 = {
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
BOOT = {
priority = 1;
name = "BOOT";
2024-04-27 01:15:11 +02:00
start = "1M";
end = "550M";
2024-04-25 14:51:20 +02:00
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
# https://github.com/nix-community/disko/issues/527
mountOptions = [ "umask=0077" ];
mountpoint = "/boot";
};
}; # partition 1 (ESP)
ROOT = {
2024-04-27 01:15:11 +02:00
size = "100%";
2024-04-25 14:51:20 +02:00
content = {
type = "btrfs";
extraArgs = [ "-f" ];
subvolumes = {
"/root" = {
mountpoint = "/";
mountOptions = [ "compress=zstd" "noatime" ];
}; # root
"/home" = {
mountpoint = "/home";
mountOptions = [ "compress=zstd" "noatime" ];
}; # home
"/nix" = {
mountpoint = "/nix";
mountOptions = [ "compress=zstd" "noatime" ];
}; # nix
}; # subvolumes
}; # content
}; # partition 2 (/ BTRFS)
}; # partitions
}; # content
}; # disko.devices.disk.nvme0
2024-04-27 01:16:45 +02:00
mmcblk0 = {
type = "disk";
device = "/dev/mmcblk0";
content = {
type = "gpt";
partitions = {
2024-04-27 01:18:26 +02:00
SDCARD = {
size = "100%";
2024-04-27 01:16:45 +02:00
content = {
type = "btrfs";
extraArgs = [ "-f" ];
2024-04-27 01:18:26 +02:00
mountpoint = "/sdcard";
2024-04-27 12:32:21 +02:00
mountOptions = [ "compress=zstd" "noatime" ];
2024-04-27 01:16:45 +02:00
}; # content
}; # partition 2 (SD_CARD BTRFS)
}; # partitions
}; # content
}; # disko.devices.disk.mmcblk0
}; # disko.devices.disk
2024-04-24 06:13:51 +02:00
} # root