From 1a7d3ccc7536a1803b5e98997bb3c8fc9f98e92f Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sat, 16 Nov 2024 19:45:44 -0500 Subject: [PATCH] updating displayManager and removing x11 --- systems/muninn/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/systems/muninn/default.nix b/systems/muninn/default.nix index 3b9c4cb..412f88c 100644 --- a/systems/muninn/default.nix +++ b/systems/muninn/default.nix @@ -1,8 +1,8 @@ +{ pkgs, ... }: { imports = [ ../../users/richie ../../common/global - ../../common/optional/desktop.nix ../../common/optional/steam.nix ../../common/optional/systemd-boot.nix ./hardware.nix @@ -25,9 +25,15 @@ security.rtkit.enable = true; - services = { + boot = { + kernelPackages = pkgs.linuxPackages_zen; + zfs.package = pkgs.zfs_unstable; + }; - displayManager.sddm.enable = true; + services = { + desktopManager.plasma6.enable = true; + + displayManager.autoLogin.user = "richie"; openssh.ports = [ 262 ];