2025-01-13 11:52:09 +08:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
2024-07-27 18:18:35 +08:00
|
|
|
global = {
|
|
|
|
id = "09a2900f15b74f36b023a9ebcd539f6a";
|
|
|
|
fs.esp.uuid = "AE73-B83E";
|
|
|
|
fs.type = "xfs";
|
|
|
|
fs.store = "e4c673cb-03c5-44ac-b2f1-1085a7f7a553";
|
|
|
|
fs.cryptsetup.enable = true;
|
|
|
|
fs.cryptsetup.uuids.persist = "122001b1-7a43-4bab-ae7c-ba8eeb1cc864";
|
|
|
|
boot.lanzaboote = true;
|
|
|
|
gpu.enable = true;
|
|
|
|
gpu.type = "amdgpu";
|
2024-08-04 12:27:11 +08:00
|
|
|
android.enable = true;
|
2024-07-27 18:18:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
home = {
|
2024-07-29 14:43:01 +08:00
|
|
|
gnome.enable = true;
|
2024-07-27 18:18:35 +08:00
|
|
|
jetbrains.enable = true;
|
|
|
|
vscode.enable = true;
|
2024-07-29 14:43:01 +08:00
|
|
|
steam.enable = true;
|
2024-07-27 18:18:35 +08:00
|
|
|
minecraft.enable = true;
|
|
|
|
minecraft.user = "app";
|
|
|
|
};
|
|
|
|
|
2025-01-13 11:52:09 +08:00
|
|
|
users.homeModules = [
|
|
|
|
{
|
|
|
|
wayland.windowManager.sway.config = {
|
|
|
|
input = {
|
|
|
|
"9610:30:HID_258a:001e_Mouse".natural_scroll = "disabled";
|
|
|
|
"1539:61441:NVTK0603:00_0603:F001_UNKNOWN".map_to_output = "eDP-1";
|
|
|
|
"1539:61441:NVTK0603:00_0603:F001".map_to_output = "eDP-1";
|
|
|
|
};
|
|
|
|
output = {
|
|
|
|
eDP-1.scale = "2";
|
|
|
|
eDP-1.transform = "270";
|
|
|
|
};
|
2024-07-27 18:18:35 +08:00
|
|
|
};
|
2025-01-13 11:52:09 +08:00
|
|
|
}
|
|
|
|
];
|
2024-07-27 18:18:35 +08:00
|
|
|
|
|
|
|
powerManagement.enable = true;
|
|
|
|
powerManagement.cpuFreqGovernor = "performance";
|
|
|
|
boot.kernelParams = [
|
|
|
|
"video=eDP-1:panel_orientation=left_side_up"
|
|
|
|
];
|
2024-07-29 20:01:06 +08:00
|
|
|
boot.plymouth.extraConfig = ''
|
|
|
|
DeviceScale=2
|
|
|
|
'';
|
2024-07-27 18:18:35 +08:00
|
|
|
|
2025-01-13 11:52:09 +08:00
|
|
|
services.greetd.settings.default_session.command =
|
|
|
|
let
|
|
|
|
cfg = config.programs.regreet;
|
|
|
|
in
|
|
|
|
lib.mkOverride 999 "${pkgs.dbus}/bin/dbus-run-session ${lib.getExe pkgs.cage} ${lib.escapeShellArgs cfg.cageArgs} -- ${pkgs.writeShellScript "cageResolution" ''
|
|
|
|
${lib.getExe pkgs.wlr-randr} --output eDP-1 --scale 2 --transform 90
|
|
|
|
${lib.getExe cfg.package}
|
|
|
|
''}";
|
2024-07-27 18:18:35 +08:00
|
|
|
|
2024-07-29 14:43:01 +08:00
|
|
|
hardware.sensor.iio.enable = true;
|
2024-07-27 18:18:35 +08:00
|
|
|
hardware.enableRedistributableFirmware = true;
|
2025-01-13 11:52:09 +08:00
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
"nvme"
|
|
|
|
"xhci_pci"
|
|
|
|
"thunderbolt"
|
|
|
|
"usbhid"
|
|
|
|
"rtsx_pci_sdmmc"
|
|
|
|
];
|
2024-07-27 18:18:35 +08:00
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
|
|
}
|