diff --git a/linux/blitzar/syncthing.nix b/linux/blitzar/syncthing.nix index f569dde..8596490 100644 --- a/linux/blitzar/syncthing.nix +++ b/linux/blitzar/syncthing.nix @@ -3,11 +3,21 @@ { services.syncthing = { enable = true; - settings.folders.music = { - enable = true; - devices = [ "nebula" ]; - path = "~/Music"; - type = "sendonly"; + settings.folders = { + game-data = { + devices = [ "protostar" ]; + path = "~/Game/data"; + type = "sendonly"; + }; + game-save = { + device = [ "protostar" ]; + path = "~/Game/save"; + }; + music = { + devices = [ "nebula" ]; + path = "~/Music"; + type = "sendonly"; + }; }; }; } diff --git a/linux/nebula/syncthing.nix b/linux/nebula/syncthing.nix index 90f5aa5..66f5ebc 100644 --- a/linux/nebula/syncthing.nix +++ b/linux/nebula/syncthing.nix @@ -4,7 +4,6 @@ services.syncthing = { enable = true; settings.folders.music = { - enable = true; devices = [ "blitzar" ]; path = "~/Music"; type = "receiveonly"; diff --git a/linux/protostar/gui.nix b/linux/protostar/gui.nix index d81d3f0..f8e056e 100644 --- a/linux/protostar/gui.nix +++ b/linux/protostar/gui.nix @@ -15,16 +15,16 @@ in yuzu ]; jovian = { - decky-loader = { - enable = true; - user = usr; - }; devices.steamdeck.enable = true; steam = { enable = true; autoStart = true; - desktopSession = "gamescope-wayland"; + desktopSession = "plasma"; user = usr; }; }; + + programs.steam.enable = true; + + services.xserver.desktopManager.plasma6.enable = true; } diff --git a/linux/protostar/syncthing.nix b/linux/protostar/syncthing.nix index 0bb4881..8d3951a 100644 --- a/linux/protostar/syncthing.nix +++ b/linux/protostar/syncthing.nix @@ -3,15 +3,16 @@ { services.syncthing = { enable = true; - # settings = let pc = "blitzar"; in { - # folders.music = { - # enable = true; - # devices = [ pc ]; - # id = "Music"; - # label = "Music"; - # path = "~/Music"; - # type = "receiveonly"; - # }; - # }; + settings.folders = { + game-data = { + devices = [ "blitzar" ]; + path = "~/Game/data"; + type = "receiveonly"; + }; + game-save = { + device = [ "blitzar" ]; + path = "~/Game/save"; + }; + }; }; }