connect framework to svalbard
This commit is contained in:
parent
6a856e8b61
commit
66f4ed1b1d
1 changed files with 12 additions and 5 deletions
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
[
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
|
||||
|
|
@ -14,18 +15,24 @@
|
|||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/3c1098ea-7cfd-4285-9d26-6a5d121d1205";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/3c1098ea-7cfd-4285-9d26-6a5d121d1205";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/4904-4E9E";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/4904-4E9E";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
fileSystems."/storage" = {
|
||||
device = "192.168.1.168:/storage";
|
||||
fsType = "nfs";
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/97c769a2-55da-475a-8dc0-d74d8bbde514"; }
|
||||
];
|
||||
[{ device = "/dev/disk/by-uuid/97c769a2-55da-475a-8dc0-d74d8bbde514"; }];
|
||||
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
# high-resolution display
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue