NixOS-Config/Server/hardware-configuration.nix

89 lines
2.5 KiB
Nix
Raw Normal View History

2024-07-30 08:51:17 -04:00
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "nvme" "usbhid" "sd_mod" "sr_mod" ];
boot.kernelModules = [ "kvm-intel" ];
# Mounting options
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/8f81cab7-9381-4950-b77f-b85c5fdbad16";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/2034-754A";
fsType = "vfat";
};
2024-08-20 02:54:33 -04:00
"/export/JimboNFS" = {
2024-07-30 08:51:17 -04:00
device = "/dev/disk/by-uuid/713fcd92-534c-4153-8e04-e0c6fe5f6a51";
fsType = "ext4";
2024-08-20 02:54:33 -04:00
noCheck = true;
2024-07-30 08:51:17 -04:00
};
2024-08-20 02:54:33 -04:00
"/home/jimbo/JimboNFS" = {
device = "/export/JimboNFS";
2024-07-30 08:51:17 -04:00
fsType = "none";
options = [ "bind" ];
};
2024-08-20 02:54:33 -04:00
# Atrocity of var bindmounts
2024-07-30 08:51:17 -04:00
"/mnt/nextcloud/data/JimboNFS" = {
device = "/export/JimboNFS";
2024-07-30 08:51:17 -04:00
fsType = "none";
options = [ "bind" ];
};
"/var/lib/bitwarden_rs" = {
device = "/export/JimboNFS/System/var/lib/bitwarden_rs";
2024-07-30 08:51:17 -04:00
fsType = "none";
options = [ "bind" ];
};
"/var/lib/gitea" = {
device = "/export/JimboNFS/System/var/lib/gitea";
2024-07-30 08:51:17 -04:00
fsType = "none";
options = [ "bind" ];
};
"/var/lib/matrix-synapse" = {
device = "/export/JimboNFS/System/var/lib/matrix-synapse";
2024-07-30 08:51:17 -04:00
fsType = "none";
options = [ "bind" ];
};
"/var/lib/nextcloud" = {
device = "/export/JimboNFS/System/var/lib/nextcloud";
2024-07-30 08:51:17 -04:00
fsType = "none";
options = [ "bind" ];
};
"/var/lib/owncast" = {
device = "/export/JimboNFS/System/var/lib/owncast";
fsType = "none";
options = [ "bind" ];
};
2024-08-20 02:54:33 -04:00
"/var/lib/docker/volumes/azuracast_station_data/_data/jimbops/media/Music" = {
device = "/export/JimboNFS/Music";
fsType = "none";
options = [ "bind" ];
};
2024-08-09 01:42:44 -04:00
"/var/lib/private/pufferpanel/servers" = {
device = "/export/JimboNFS/System/var/lib/pufferpanel/servers";
2024-07-30 08:51:17 -04:00
fsType = "none";
options = [ "bind" ];
2024-08-20 02:54:33 -04:00
};
"/var/lib/mastodon" = {
device = "/export/JimboNFS/System/var/lib/mastodon";
fsType = "none";
options = [ "bind" ];
2024-07-30 08:51:17 -04:00
};
};
swapDevices = [
{ device = "/dev/disk/by-uuid/ec422cad-bf93-4b15-b989-2c807f1073a4"; }
];
# Enables DHCP on each ethernet and wireless interface.
networking.useDHCP = lib.mkDefault true;
# Hardware settings
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
boot.swraid.enable = true;
}