Skip to content

Commit 22f2fab

Browse files
committed
feat(bruddynix): add jovian gaming-mode session
Registers a Steam Deck-style gamescope session in SDDM as an opt-in alternative to Plasma (no auto-launch). desktopSession wires the Deck UI's switch-to-desktop button to Plasma.
1 parent 392cebb commit 22f2fab

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

systems/x86_64-linux/bruddynix/default.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
config,
3+
inputs,
34
lib,
45
...
56
}:
@@ -8,6 +9,7 @@ let
89
in
910
{
1011
imports = [
12+
inputs.jovian.nixosModules.default
1113
./disks.nix
1214
./hardware.nix
1315
./network.nix
@@ -116,6 +118,13 @@ in
116118
NO_POINTER_VIEWPORT = "1";
117119
};
118120

121+
# Steam Deck-style Gaming Mode as an optional SDDM session (no auto-launch)
122+
jovian.steam = {
123+
enable = true;
124+
user = "bruddy";
125+
desktopSession = "plasma";
126+
};
127+
119128
nix.settings = {
120129
cores = 8;
121130
max-jobs = 8;

0 commit comments

Comments
 (0)