nas plasma6, dont enable sddm by default

This commit is contained in:
mjallen18
2024-02-29 14:23:14 -06:00
parent 7544da3c4d
commit 6a9eb20dc3

View File

@@ -9,6 +9,7 @@ let
"$y$j9T$EkPXmsmIMFFZ.WRrBYCxS1$P0kwo6e4.WM5DsqUcEqWC3MrZp5KfCjxffraMFZWu06"; "$y$j9T$EkPXmsmIMFFZ.WRrBYCxS1$P0kwo6e4.WM5DsqUcEqWC3MrZp5KfCjxffraMFZWu06";
hostname = "jallen-nas"; hostname = "jallen-nas";
allowedPorts = [ 2342 61208 ]; allowedPorts = [ 2342 61208 ];
enableDisplayManager = false;
in { in {
imports = [ # Include the results of the hardware scan. imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
@@ -163,13 +164,13 @@ in {
# Enable the X11 windowing system. # Enable the X11 windowing system.
xserver = { xserver = {
enable = true; enable = true;
# Enable the Plasma 6 Desktop Environment. # Enable the Plasma 6 Desktop Environment.
displayManager = { displayManager = {
sddm.enable = true; sddm.enable = enableDisplayManager;
defaultSession = "plasmawayland"; defaultSession = "plasmawayland";
}; };
desktopManager.plasma5.enable = true; desktopManager.plasma6.enable = true;
}; };
# Set to enable Flatpak # Set to enable Flatpak