SteamDeck: enable steam deck ui and hardware support
This commit is contained in:
parent
73f9f12489
commit
d92b95c90f
1 changed files with 15 additions and 1 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running `nixos-help`).
|
# and in the NixOS manual (accessible by running `nixos-help`).
|
||||||
|
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Use grub boot loader
|
# Use grub boot loader
|
||||||
|
|
@ -42,6 +42,20 @@
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jovian = {
|
||||||
|
devices.steamdeck = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
# Steam Deck UI settings
|
||||||
|
steam = {
|
||||||
|
enable = true;
|
||||||
|
autoStart = true;
|
||||||
|
user = "toast";
|
||||||
|
desktopSession = "plasmawayland";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
services.xserver.displayManager.sddm.enable = lib.mkForce false;
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
# services.xserver.layout = "us";
|
# services.xserver.layout = "us";
|
||||||
# services.xserver.xkbOptions = "eurosign:e,caps:escape";
|
# services.xserver.xkbOptions = "eurosign:e,caps:escape";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue