nix/nixos/hosts/steamdeck/disks.nix

77 lines
2.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-26 05:30:08 +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";
start = "0%";
end = "550MiB";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
# https://github.com/nix-community/disko/issues/527
mountOptions = [ "umask=0077" ];
mountpoint = "/boot";
};
}; # partition 1 (ESP)
ROOT = {
start = "550MiB";
2024-04-26 16:23:16 +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-26 16:23:16 +02:00
mmcblk0 = {
type = "disk";
device = "/dev/mmcblk0";
content = {
type = "gpt";
partitions = {
MICROSD = {
name = "MICROSD";
size = "100%";
content = {
type = "btrfs";
extraArgs = [ "-f" ];
subvolumes = {
"/microsd" = {
mountpoint = "/microsd";
mountOptions = [ "compress=none" "noatime" ];
}; # sd_card
}; # subvolumes
}; # content
}; # partition 2 (MICROSD BTRFS)
}; # partitions
}; # content
}; # disko.devices.disk.mmcblk0
}; # disko.devices
2024-04-24 06:13:51 +02:00
} # root