feat(shinkirou): initial configuration
This commit is contained in:
parent
3c474dbad3
commit
08361b7bda
1
global/auth/pub/shinkirou.pub
Normal file
1
global/auth/pub/shinkirou.pub
Normal file
|
@ -0,0 +1 @@
|
|||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDwV7Z+PDC8ARRj1LxUJlv59gJ3A84LCMMyMSqLtRtuQ koishi@shinkirou
|
52
spec/shinkirou/default.nix
Normal file
52
spec/shinkirou/default.nix
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue