mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 02:03:21 +01:00
19 lines
353 B
Nix
19 lines
353 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-uuid/63546625-e99c-4aa4-ba11-ff193ad13047";
|
|
fsType = "ext4";
|
|
};
|
|
};
|
|
|
|
boot.initrd.luks.devices = {
|
|
"LUKS-MOBILE-NIXOS-ROOTFS" = {
|
|
device = "/dev/disk/by-uuid/28e0bd73-e4fb-4002-9b17-a494823e6999";
|
|
};
|
|
};
|
|
|
|
nix.settings.max-jobs = lib.mkDefault 2;
|
|
}
|