nixos/spec/reimaden/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

2024-01-09 14:16:37 +08:00
{
global = {
id = "6b564d01975a4e93b4a51f34ba24e5b4";
fs.esp.uuid = "FC6D-75D8";
fs.type = "zfs";
boot.lanzaboote = true;
2024-01-27 22:14:03 +08:00
gpu.enable = true;
gpu.type = "intel";
gpu.arc = "8086:5691";
2024-01-09 14:16:37 +08:00
android.enable = true;
};
home = {
plasma.specialise = true;
#headless.enable = "eDP-1";
2024-01-10 23:49:25 +08:00
gyroflow.enable = true;
jetbrains.enable = true;
2024-02-12 23:30:11 +08:00
vscode.enable = true;
2024-01-10 13:38:29 +08:00
libreoffice.enable = true;
2024-01-09 14:16:37 +08:00
minecraft.enable = true;
steam.enable = true;
};
home.plasma.extraConfig = {
configFile = {
kcminputrc."Libinput/2362/597/UNIW0001:00 093A:0255 Touchpad".NaturalScroll = true;
};
};
2024-01-09 14:16:37 +08:00
powerManagement.enable = true;
powerManagement.cpuFreqGovernor = "powersave";
2024-01-09 14:16:37 +08:00
boot.kernelParams = [ "zfs.zfs_arc_max=34359738368" ];
2024-01-09 15:02:59 +08:00
boot.loader.timeout = 2;
2024-01-09 14:16:37 +08:00
hardware.enableRedistributableFirmware = true;
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
hardware.cpu.intel.updateMicrocode = true;
imports = [ ./ac71 ];
2024-01-09 14:16:37 +08:00
}