16 lines
472 B
Nix
16 lines
472 B
Nix
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||
|
|
|
||
|
|
fileSystems."/persist" = {
|
||
|
|
device = "/dev/disk/by-partlabel/disk-station-root";
|
||
|
|
neededForBoot = true;
|
||
|
|
fsType = "btrfs";
|
||
|
|
options = [ "subvol=persist" ];
|
||
|
|
};
|
||
|
|
|
||
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
|
}
|