2025-01-13 11:52:09 +08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
2024-03-04 21:28:16 +08:00
|
|
|
global = {
|
|
|
|
id = "23c46cfc573f4f889af9ba5d4678c2ab";
|
|
|
|
fs.esp.uuid = "6695-0740";
|
|
|
|
fs.type = "zfs";
|
|
|
|
boot.lanzaboote = true;
|
|
|
|
gpu.enable = true;
|
|
|
|
gpu.type = "prime";
|
|
|
|
android.enable = true;
|
|
|
|
asusd.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
home = {
|
2024-07-18 17:06:03 +08:00
|
|
|
plasma.specialise = true;
|
2024-03-04 21:28:16 +08:00
|
|
|
gyroflow.enable = true;
|
|
|
|
vscode.enable = true;
|
|
|
|
libreoffice.enable = true;
|
|
|
|
minecraft.enable = true;
|
|
|
|
steam.enable = true;
|
|
|
|
};
|
|
|
|
|
2025-01-13 11:52:09 +08:00
|
|
|
users.homeModules = [
|
|
|
|
{
|
|
|
|
wayland.windowManager.sway.config = {
|
|
|
|
input."1267:16857:ELAN9009:00_04F3:41D9".map_to_output = "DP-3";
|
|
|
|
output = {
|
|
|
|
eDP-1.scale = "1.5";
|
|
|
|
eDP-1.pos = "0 0";
|
|
|
|
DP-3.scale = "2.25";
|
|
|
|
DP-3.pos = "0 1066";
|
|
|
|
};
|
2024-03-04 21:28:16 +08:00
|
|
|
};
|
2025-01-13 11:52:09 +08:00
|
|
|
}
|
|
|
|
];
|
2024-03-04 21:28:16 +08:00
|
|
|
|
2024-05-14 10:21:10 +08:00
|
|
|
home.plasma.extraConfig = {
|
|
|
|
configFile = {
|
2024-05-14 11:40:47 +08:00
|
|
|
kwinrc.Xwayland.Scale = 2.25;
|
2024-05-14 11:21:11 +08:00
|
|
|
kcminputrc."Libinput/1267/16857/ELAN9009:00 04F3:41D9".OutputName = "DP-3";
|
|
|
|
kcminputrc."Libinput/1267/12962/ASUE140F:00 04F3:32A2 Touchpad".NaturalScroll = true;
|
2024-05-30 17:19:18 +08:00
|
|
|
kcminputrc."Libinput/2821/6523/ASUSTeK ROG GLADIUS III".NaturalScroll = true;
|
2024-05-14 10:21:10 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-03-04 21:28:16 +08:00
|
|
|
powerManagement.enable = true;
|
|
|
|
powerManagement.cpuFreqGovernor = "performance";
|
|
|
|
boot.kernelParams = [ "zfs.zfs_arc_max=34359738368" ];
|
2025-01-13 11:52:09 +08:00
|
|
|
console.packages = [ pkgs.terminus_font ];
|
2024-03-04 21:28:16 +08:00
|
|
|
console.font = "ter-v32n";
|
|
|
|
console.earlySetup = true;
|
|
|
|
|
|
|
|
hardware.nvidia.prime = {
|
|
|
|
amdgpuBusId = "PCI:9:0:0";
|
|
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
|
|
};
|
|
|
|
|
2025-01-13 11:52:09 +08:00
|
|
|
services.greetd.settings.default_session.command =
|
|
|
|
let
|
|
|
|
cfg = config.programs.regreet;
|
|
|
|
in
|
|
|
|
"${pkgs.dbus}/bin/dbus-run-session ${lib.getExe pkgs.cage} ${lib.escapeShellArgs cfg.cageArgs} -- ${pkgs.writeShellScript "cageResolution" ''
|
|
|
|
${lib.getExe pkgs.wlr-randr} --output DP-3 --scale 2.25
|
|
|
|
${lib.getExe cfg.package}
|
|
|
|
''}";
|
2024-03-06 10:26:31 +08:00
|
|
|
|
2024-03-04 21:28:16 +08:00
|
|
|
hardware.enableRedistributableFirmware = true;
|
2025-01-13 11:52:09 +08:00
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
"nvme"
|
|
|
|
"xhci_pci"
|
|
|
|
"usbhid"
|
|
|
|
"usb_storage"
|
|
|
|
"sd_mod"
|
|
|
|
];
|
2024-03-04 21:28:16 +08:00
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
hardware.cpu.amd.updateMicrocode = true;
|
|
|
|
}
|