nixos-config/hardware-configuration/mobile.nix

10 lines
199 B
Nix
Raw Normal View History

2023-01-07 20:54:12 -05:00
{ config, lib, pkgs, ... }:
{
fileSystems."/" =
2023-01-14 19:25:31 -05:00
{ device = "/dev/disk/by-uuid/bd2fe7f4-b0e8-40b3-8da3-68f56dd49fab";
2023-01-07 20:54:12 -05:00
fsType = "ext4";
};
nix.settings.max-jobs = lib.mkDefault 3;
}