style: mount options to variable

This commit is contained in:
Dmitriy Kholkin 2025-03-10 20:16:07 +03:00
parent 130b1e9eb3
commit ebf506016e
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2

View File

@ -5,6 +5,12 @@
disko.devices.disk.disk1 =
let
device = "/dev/sda";
defaultMountOpts = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
in
{
inherit device;
@ -58,94 +64,44 @@
"/snapshots" = { };
"/rootfs" = {
mountpoint = "/";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
"/homefs" = {
mountpoint = "/home";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
"/persist" = { };
"/persist/nix" = {
mountpoint = "/nix";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
"/persist/srv" = {
mountpoint = "/srv";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
"/persist/docker" = {
mountpoint = "/var/lib/docker";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
"/persist/podman" = {
mountpoint = "/var/lib/podman";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
"/persist/containers" = {
mountpoint = "/var/lib/containers";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
"/persist/libvirt" = {
mountpoint = "/var/lib/libvirt";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
"/persist/log" = {
mountpoint = "/var/log";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
"/persist/impermanence" = {
mountpoint = "/persist";
mountOptions = [
"compress=zstd"
"noatime"
"autodefrag"
"ssd"
];
mountOptions = defaultMountOpts;
};
};
};