feat(shinkirou): initial configuration

This commit is contained in:
514fpv 2024-03-04 21:28:16 +08:00
parent 3c474dbad3
commit 08361b7bda
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDwV7Z+PDC8ARRj1LxUJlv59gJ3A84LCMMyMSqLtRtuQ koishi@shinkirou

View file

@ -0,0 +1,52 @@
{ pkgs
, ... }: {
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 = {
gyroflow.enable = true;
vscode.enable = true;
libreoffice.enable = true;
minecraft.enable = true;
steam.enable = true;
};
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";
};
};
} ];
powerManagement.enable = true;
powerManagement.cpuFreqGovernor = "performance";
boot.kernelParams = [ "zfs.zfs_arc_max=34359738368" ];
console.packages = [ pkgs.terminus_font ];
console.font = "ter-v32n";
console.earlySetup = true;
hardware.nvidia.prime = {
amdgpuBusId = "PCI:9:0:0";
nvidiaBusId = "PCI:1:0:0";
};
hardware.enableRedistributableFirmware = true;
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
hardware.cpu.amd.updateMicrocode = true;
}