nixos-config/hosts/kitty/hardware/default.nix

76 lines
1.9 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, modulesPath, ... }:
2024-08-24 22:16:51 -04:00
{
boot = {
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-24 05:41:55 -04:00
# Main root
2024-08-24 22:16:51 -04:00
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/b8b7ed47-c98c-4a49-af01-b2832dde1287";
fsType = "btrfs";
options = [ "subvol=@" ];
};
"/home" = {
device = "/dev/disk/by-uuid/b8b7ed47-c98c-4a49-af01-b2832dde1287";
fsType = "btrfs";
options = [ "subvol=@home" ];
};
"/nix" = {
device = "/dev/disk/by-uuid/b8b7ed47-c98c-4a49-af01-b2832dde1287";
fsType = "btrfs";
options = [ "subvol=@nix" ];
};
"/var" = {
device = "/dev/disk/by-uuid/acf95700-8669-45c7-9a72-bf3215b3c325";
fsType = "btrfs";
options = [ "subvol=@var" ];
};
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
};
# Subvols and bindmounts
"/persist" = {
device = "/dev/disk/by-uuid/acf95700-8669-45c7-9a72-bf3215b3c325";
2024-10-24 05:41:55 -04:00
fsType = "btrfs";
options = [ "subvol=persist" "compress=zstd" ];
2024-08-24 22:16:51 -04:00
};
"/export/JimboNFS" = {
depends = [ "/persist" ];
device = "/persist/export/JimboNFS";
fsType = "none";
options = [ "bind" ];
2024-10-24 05:41:55 -04:00
};
"/srv/minecraft" = {
depends = [ "/persist" ];
device = "/persist/srv/minecraft";
fsType = "none";
options = [ "bind" ];
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-08-24 22:16:51 -04:00
swapDevices = [
{ device = "/dev/disk/by-uuid/57178cfc-3e71-4d35-8c7f-e355f9dc84df"; }
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
}