steamdeck: add specialisation for sway

This commit is contained in:
2025-02-02 20:55:06 +01:00
parent c3a45f7984
commit 95048298ad
2 changed files with 25 additions and 14 deletions

View File

@@ -14,10 +14,20 @@
{ pkgs, ... }:
{
specialisation = {
steam.configuration = {
imports =
[(import ../../modules/wm/steam/home.nix)] ++
[(import ../../modules/wm/kde/home.nix)];
};
sway.configuration = {
imports =
[(import ../../modules/wm/sway/home.nix)];
};
};
imports =
[
../../modules/wm/steam/home.nix # Window Manager
../../modules/wm/kde/home.nix # Window Manager
../../modules/home.nix # Window Manager
];