NixOS/hosts/luna/os/filesystem.nix

26 lines
535 B
Nix
Raw Normal View History

2023-10-13 19:50:01 -05:00
{ 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" ];
};
};
2023-10-27 01:45:07 -05:00
zramSwap.enable = true;
2023-10-13 19:50:01 -05:00
}