Updates to Steam deck config
This commit is contained in:
parent
47d674aac6
commit
acbcb5f149
1 changed files with 12 additions and 7 deletions
|
@ -15,19 +15,24 @@
|
||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
||||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
hardware.bluetooth.enable = true; # enables support for Bluetooth
|
||||||
|
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "Asia/Tokyo";
|
time.timeZone = "Asia/Tokyo";
|
||||||
# Set the networking hostname:
|
# Set the networking hostname:
|
||||||
networking.hostName = "steamdeck";
|
networking.hostName = "steamdeck";
|
||||||
|
|
||||||
jovian = {
|
jovian = {
|
||||||
decky-loader.enable = true;
|
decky-loader = {
|
||||||
steam.enable = true;
|
enable = true;
|
||||||
steam.autoStart = true;
|
user = username;
|
||||||
steam.user = username;
|
};
|
||||||
steam.desktopSession = "plasma";
|
steam = {
|
||||||
steamos.useSteamOSConfig = true;
|
enable = true;
|
||||||
|
autoStart = true;
|
||||||
|
user = username;
|
||||||
|
desktopSession = "plasma";
|
||||||
|
};
|
||||||
devices.steamdeck.enable = true;
|
devices.steamdeck.enable = true;
|
||||||
hardware.has.amd.gpu = true;
|
hardware.has.amd.gpu = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue