NixOS-Config/hosts/kitty/hardware/default.nix

101 lines
2.3 KiB
Nix
Raw Permalink Normal View History

{ config, lib, pkgs, modulesPath, ... }:
2024-08-24 22:16:51 -04:00
{
boot = {
blacklistedKernelModules = [
"pcspkr"
];
2024-08-24 22:16:51 -04:00
initrd = {
availableKernelModules = [
"xhci_pci"
2024-10-20 20:29:38 -04:00
"ehci_pci"
"ahci"
"nvme"
"usbhid"
"sd_mod"
"sr_mod"
2024-08-24 22:16:51 -04:00
];
kernelModules = [
"kvm-intel"
];
};
2024-10-09 03:36:08 -04:00
swraid = {
enable = true;
mdadmConf = "MAILADDR contact@${config.domains.jim2}";
2024-10-09 03:36:08 -04:00
};
2024-08-24 22:16:51 -04:00
};
2024-10-24 05:41:55 -04:00
# Main root
2024-08-24 22:16:51 -04:00
fileSystems = {
"/" = {
device = "/dev/server/root";
fsType = "btrfs";
options = [ "subvol=@" ];
};
"/home" = {
device = "/dev/server/root";
fsType = "btrfs";
options = [ "subvol=@home" ];
};
"/nix" = {
device = "/dev/server/root";
fsType = "btrfs";
options = [ "subvol=@nix" ];
};
"/var" = {
device = "/dev/server/root";
fsType = "btrfs";
options = [ "subvol=@var" ];
};
2024-10-24 05:41:55 -04:00
"/srv/minecraft" = {
device = "/dev/server/root";
2024-10-24 05:41:55 -04:00
fsType = "btrfs";
options = [ "subvol=@minecraft" "compress=zstd" ];
2024-10-24 05:41:55 -04:00
};
2024-08-24 22:16:51 -04:00
"/boot" = {
device = "/dev/disk/by-uuid/CD94-1D3F";
2024-08-24 22:16:51 -04:00
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
2024-08-24 22:16:51 -04:00
};
# Files
2024-10-24 05:41:55 -04:00
"/export/JimboNFS/Downloads" = {
device = "/dev/server/root";
2024-10-24 05:41:55 -04:00
fsType = "btrfs";
options = [ "subvol=@downloads" "compress=zstd" ];
};
2024-10-24 05:41:55 -04:00
"/export/JimboNFS/Documents" = {
device = "/dev/server/root";
2024-10-24 05:41:55 -04:00
fsType = "btrfs";
options = [ "subvol=@docs" "compress=zstd" ];
2024-10-24 05:41:55 -04:00
};
# Media
2024-10-24 05:41:55 -04:00
"/export/JimboNFS/Photos" = {
device = "/dev/server/root";
2024-10-24 05:41:55 -04:00
fsType = "btrfs";
options = [ "subvol=@photos" "compress=zstd" ];
2024-08-24 22:16:51 -04:00
};
"/export/JimboNFS/Videos" = {
device = "/dev/server/root";
2024-10-24 05:41:55 -04:00
fsType = "btrfs";
options = [ "subvol=@videos" "compress=zstd" ];
2024-10-24 05:41:55 -04:00
};
# Music
"/export/JimboNFS/Music" = {
device = "/dev/server/root";
2024-10-24 05:41:55 -04:00
fsType = "btrfs";
options = [ "subvol=@music" "compress=zstd" ];
2024-09-10 14:45:28 -04:00
};
2024-08-24 22:16:51 -04:00
};
2024-09-10 15:54:45 -04:00
2024-10-24 05:41:55 -04:00
2024-08-24 22:16:51 -04:00
swapDevices = [
{ device = "/dev/server/root/swap"; }
2024-08-24 22:16:51 -04:00
];
2024-10-09 03:36:08 -04:00
networking.useDHCP = lib.mkDefault true;
2024-09-22 14:46:51 -04:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2024-08-24 22:16:51 -04:00
}