split manwe config (WARNING split is done opposite to main branch)

This commit is contained in:
Chris Kruining 2025-07-28 14:33:04 +02:00
parent a3af30e93c
commit 72b0f6f8fa
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
7 changed files with 89 additions and 14 deletions

View file

@ -22,21 +22,14 @@ in
options = [ "fmask=0022" "dmask=0022" ];
};
"/home/chris/games" = {
device = "/dev/disk/by-label/games";
fsType = "ext4";
};
# TODO :: Reformat the disk to ext4
"/home/chris/data" = {
device = "/dev/disk/by-label/Data";
fsType = "ntfs-3g";
options = [ "rw" "uid=chris" ];
};
"/home/chris/media" = {
device = "ulmo:/";
fsType = "nfs";
};
"/home/chris/mandos" = {
device = "mandos:/";
fsType = "nfs";
};
};
}

View file

@ -8,11 +8,11 @@ in
boot = {
initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
initrd.kernelModules = [ ];
kernelModules = [ "kvm-intel" ];
kernelModules = [ "kvm-amd" ];
kernelParams = [];
extraModulePackages = [ ];
};
nixpkgs.hostPlatform = mkDefault system;
hardware.cpu.intel.updateMicrocode = mkDefault config.hardware.enableRedistributableFirmware;
hardware.cpu.amd.updateMicrocode = mkDefault config.hardware.enableRedistributableFirmware;
}