Compare commits
2 commits
f9986b0d8d
...
621de00ad3
| Author | SHA1 | Date | |
|---|---|---|---|
| 621de00ad3 | |||
| e9bd1e24c3 |
1 changed files with 12 additions and 1 deletions
|
|
@ -28,12 +28,18 @@
|
||||||
initrd.systemd.enable = true;
|
initrd.systemd.enable = true;
|
||||||
# Plymouth doesn't support fractional scaling :(
|
# Plymouth doesn't support fractional scaling :(
|
||||||
plymouth.extraConfig = "DeviceScale=2";
|
plymouth.extraConfig = "DeviceScale=2";
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "WinMax2"; # Define your hostname.
|
networking.hostName = "WinMax2"; # Define your hostname.
|
||||||
networking.networkmanager.enable = true; # Enable networking
|
networking.networkmanager.enable = true; # Enable networking
|
||||||
|
|
||||||
|
# Sleep fixes
|
||||||
|
boot.kernelParams = [ "rtc_cmos.use_acpi_alarm=1" ];
|
||||||
|
services.udev.extraRules = ''
|
||||||
|
ACTION=="add", SUBSYSTEM=="i2c", ATTR{name}=="GXTP7385:00", ATTR{power/wakeup}="disabled"
|
||||||
|
ACTION=="add", SUBSYSTEM=="i2c", ATTR{name}=="PNP0C50:00", ATTR{power/wakeup}="disabled"
|
||||||
|
'';
|
||||||
|
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
|
@ -56,6 +62,11 @@
|
||||||
user = "toast";
|
user = "toast";
|
||||||
desktopSession = "plasmawayland";
|
desktopSession = "plasmawayland";
|
||||||
};
|
};
|
||||||
|
# Need patched mesa
|
||||||
|
devices.steamdeck = {
|
||||||
|
enableMesaPatches = true;
|
||||||
|
enableVendorRadv = true;
|
||||||
|
};
|
||||||
decky-loader = {
|
decky-loader = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue