From 0adc4ed5d2581c5ce64b240438a191ad7681b49d Mon Sep 17 00:00:00 2001 From: osbm Date: Sat, 20 Dec 2025 14:58:29 +0300 Subject: [PATCH] enable plasma in ares --- hosts/nixos/ares/configuration.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/hosts/nixos/ares/configuration.nix b/hosts/nixos/ares/configuration.nix index 6141419..8eb6fa1 100644 --- a/hosts/nixos/ares/configuration.nix +++ b/hosts/nixos/ares/configuration.nix @@ -1,4 +1,4 @@ -{ inputs, ... }: +{ inputs, lib, ... }: { imports = [ ./hardware-configuration.nix @@ -7,9 +7,9 @@ ]; osbmModules = { - # desktopEnvironment = { - # plasma.enable = true; - # }; + desktopEnvironment = { + plasma.enable = true; + }; familyUser.enable = true; programs = { adbFastboot.enable = true; @@ -31,9 +31,14 @@ enable = true; autoStart = true; user = "osbm"; + desktopSession = "plasma"; }; decky-loader.enable = true; }; + + # Disable SDDM since Jovian manages its own display manager + services.displayManager.sddm.enable = lib.mkForce false; + networking = { hostName = "ares";