41 lines
793 B
Nix
41 lines
793 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
{
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "none";
|
|
fsType = "tmpfs";
|
|
options = [ "defaults" "noatime" "mode=755" ];
|
|
};
|
|
|
|
"/boot" = {
|
|
device = "/dev/disk/by-label/NixOS-Boot";
|
|
fsType = "vfat";
|
|
options = [ "defaults" "noatime" ];
|
|
depends = [ "/" ];
|
|
};
|
|
|
|
"/nix" = {
|
|
device = "/dev/disk/by-label/NixOS-Primary";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@nix" "compress=zstd" "noatime" ];
|
|
};
|
|
};
|
|
|
|
zramSwap.enable = true;
|
|
|
|
environment.persistence = {
|
|
"/nix/persist" = {
|
|
hideMounts = true;
|
|
directories = [
|
|
"/var/lib"
|
|
"/var/log"
|
|
"/etc/nixos"
|
|
];
|
|
files = [
|
|
"/etc/machine-id"
|
|
"/etc/nix/id_rsa"
|
|
];
|
|
};
|
|
};
|
|
}
|