mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
95 lines
2.5 KiB
Nix
95 lines
2.5 KiB
Nix
|
{
|
||
|
disko.devices = {
|
||
|
disk = {
|
||
|
media = {
|
||
|
type = "disk";
|
||
|
device = "/dev/sda1";
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
root = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "btrfs";
|
||
|
extraArgs = ["-f"]; # Override existing partition
|
||
|
mountpoint = "/mnt/Media";
|
||
|
mountOptions = ["compress=zstd" "noatime"];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
archive = {
|
||
|
type = "disk";
|
||
|
device = "/dev/sda2";
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
root = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "btrfs";
|
||
|
extraArgs = ["-f"]; # Override existing partition
|
||
|
mountpoint = "/mnt/Archive";
|
||
|
mountOptions = ["compress=zstd" "noatime"];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
vdb = {
|
||
|
type = "disk";
|
||
|
device = "/dev/nvme0n1";
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
ESP = {
|
||
|
size = "1024M";
|
||
|
type = "EF00";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "vfat";
|
||
|
mountpoint = "/boot";
|
||
|
mountOptions = [
|
||
|
"defaults"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
luks = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "luks";
|
||
|
name = "crypted";
|
||
|
content = {
|
||
|
type = "btrfs";
|
||
|
extraArgs = ["-f"];
|
||
|
subvolumes = {
|
||
|
"/root" = {
|
||
|
mountpoint = "/";
|
||
|
mountOptions = ["compress=zstd" "noatime"];
|
||
|
};
|
||
|
"persist" = {
|
||
|
mountpoint = "/persist";
|
||
|
mountOptions = ["compress=zstd" "noatime"];
|
||
|
};
|
||
|
"/home" = {
|
||
|
mountpoint = "/home";
|
||
|
mountOptions = ["compress=zstd" "noatime"];
|
||
|
};
|
||
|
"/nix" = {
|
||
|
mountpoint = "/nix";
|
||
|
mountOptions = ["compress=zstd" "noatime"];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|