panacea/modules/hardware-configuration.nix

77 lines
2.0 KiB
Nix
Raw Permalink Normal View History

2024-01-08 01:25:50 +01:00
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
2024-11-19 14:18:32 +01:00
{
config,
lib,
pkgs,
modulesPath,
...
}:
2024-01-08 01:25:50 +01:00
{
2024-11-19 14:18:32 +01:00
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
2024-01-08 01:25:50 +01:00
2024-11-19 14:18:32 +01:00
boot.initrd.availableKernelModules = [
"nvme"
"xhci_pci"
"usbhid"
];
2024-01-08 01:25:50 +01:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
2024-11-19 14:18:32 +01:00
fileSystems."/" = {
device = "syscea/stateful/root";
fsType = "zfs";
};
2024-01-08 01:25:50 +01:00
2024-11-19 14:18:32 +01:00
fileSystems."/nix" = {
device = "syscea/ephemeral/nix";
fsType = "zfs";
};
2024-01-08 01:25:50 +01:00
2024-11-19 14:18:32 +01:00
fileSystems."/ugent" = {
device = "systemd-1";
fsType = "autofs";
};
2024-01-08 01:25:50 +01:00
2024-11-19 14:18:32 +01:00
fileSystems."/home/coolneng" = {
device = "syscea/stateful/home";
fsType = "zfs";
};
2024-01-08 01:25:50 +01:00
2024-11-19 14:18:32 +01:00
fileSystems."/tmp" = {
device = "syscea/ephemeral/tmp";
fsType = "zfs";
};
2024-01-08 01:25:50 +01:00
2024-11-19 14:18:32 +01:00
fileSystems."/home/coolneng/Downloads" = {
device = "syscea/stateful/home/downloads";
fsType = "zfs";
};
2024-01-08 01:25:50 +01:00
2024-11-19 14:18:32 +01:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/C374-A2FD";
fsType = "vfat";
};
2024-01-08 01:25:50 +01:00
2024-11-19 14:18:32 +01:00
swapDevices = [
{ device = "/dev/disk/by-uuid/1231a42f-a71a-4c67-b4d8-7506c02a8328"; }
];
2024-01-08 01:25:50 +01:00
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp1s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wg0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}