nixos-config/hosts/eddie/fs-default.nix

21 lines
414 B
Nix
Raw Permalink Normal View History

2025-05-21 23:12:56 -04:00
{ config, lib, pkgs, ... }:
{
fileSystems."/" =
{
device = "/dev/disk/by-uuid/f5d53811-b478-4d20-91e0-4504c33848b4";
fsType = "ext4";
};
fileSystems."/boot" =
{
device = "/dev/disk/by-uuid/E3CE-0A6E";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/f8a9a852-3ccb-4d00-8e2d-db0d68e688b2"; } ];
}