diff --git a/global/auth/pub/shinkirou.pub b/global/auth/pub/shinkirou.pub new file mode 100644 index 00000000..8da18c48 --- /dev/null +++ b/global/auth/pub/shinkirou.pub @@ -0,0 +1 @@ +ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDwV7Z+PDC8ARRj1LxUJlv59gJ3A84LCMMyMSqLtRtuQ koishi@shinkirou diff --git a/spec/shinkirou/default.nix b/spec/shinkirou/default.nix new file mode 100644 index 00000000..faf06ae7 --- /dev/null +++ b/spec/shinkirou/default.nix @@ -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; +}