nixos/systems/gwyn/default.nix

60 lines
1.7 KiB
Nix
Raw Normal View History

2022-11-04 19:35:57 +01:00
{ custom, hostname }: { lib, ... }:
2021-11-16 20:57:04 +01:00
{
2022-02-28 22:34:34 +01:00
imports = [
2022-11-04 19:35:57 +01:00
custom.inputs.nixos-hardware.nixosModules.dell-precision-5530
custom.inputs.nixos-hardware.nixosModules.common-gpu-nvidia
custom.inputs.nixos-hardware.nixosModules.common-gpu-intel
"${custom.inputs.self}/hardware/bluetooth"
"${custom.inputs.self}/hardware/nvidia"
"${custom.inputs.self}/hardware/dvd"
(import "${custom.inputs.self}/modules/desktop" { inherit custom; })
"${custom.inputs.self}/modules/lockscreen"
2022-11-04 19:35:57 +01:00
"${custom.inputs.self}/modules/logs-share"
2023-02-05 13:38:19 +01:00
"${custom.inputs.self}/modules/rdp"
2023-01-06 17:49:56 +01:00
(import "${custom.inputs.self}/modules/restic-client-desktop" { inherit custom; })
2023-05-10 18:31:24 +02:00
"${custom.inputs.self}/modules/tlp"
2022-02-28 22:34:34 +01:00
];
boot.initrd.availableKernelModules = [
2021-11-29 18:38:28 +01:00
"aesni_intel"
"ahci"
"cryptd"
2021-11-29 18:44:15 +01:00
"nvme"
"rtsx_pci_sdmmc"
2021-11-29 18:38:28 +01:00
"sd_mod"
2021-11-29 18:44:15 +01:00
"sr_mod"
"usbhid"
2021-11-29 18:38:28 +01:00
"usb_storage"
"xhci_pci"
];
2021-11-22 15:12:19 +01:00
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ "kvm-intel" "sg" ];
2021-11-16 20:57:04 +01:00
boot.extraModulePackages = [ ];
boot.kernelParams = [ ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
2021-11-29 18:38:28 +01:00
boot.initrd.luks.devices."cryptlvm".device = "/dev/nvme0n1p2";
2021-11-16 20:57:04 +01:00
2022-06-27 14:57:05 +02:00
# Required to build aarch64 packages
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2022-01-03 20:29:08 +01:00
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
};
2022-01-10 20:58:26 +01:00
2023-05-22 11:45:00 +02:00
hardware.video.hidpi.enable = true;
2022-09-06 23:03:29 +02:00
networking.hostName = hostname;
2022-01-10 20:58:26 +01:00
2022-01-03 20:29:08 +01:00
swapDevices = [
{ device = "/dev/disk/by-label/swap"; }
];
2023-05-27 12:36:25 +02:00
programs.makemkv.enable = true;
2022-01-10 20:58:26 +01:00
virtualisation.virtualbox.host.enable = true;
2021-11-16 20:57:04 +01:00
}
2021-11-22 15:12:19 +01:00