From 94b85ea62d0567589e8fe2b39de09c52810420bd Mon Sep 17 00:00:00 2001 From: Alex Davies Date: Wed, 24 Apr 2024 10:09:39 -0300 Subject: [PATCH] Enable the KDE Desktop Environment and set the NixOS state version to "23.05". --- nixos/kde-desktop.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/nixos/kde-desktop.nix b/nixos/kde-desktop.nix index 4591d23..44b5da7 100644 --- a/nixos/kde-desktop.nix +++ b/nixos/kde-desktop.nix @@ -2,20 +2,10 @@ { # Enable the KDE Desktop Environment. + services.xserver.enable = true; services.xserver.displayManager.sddm.enable = true; services.xserver.desktopManager.plasma5.enable = true; - # Define a user account. Don't forget to set a password with ‘passwd’. - users.users.jane = { - isNormalUser = true; - extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. - }; - # This value determines the NixOS release from which the default - # settings for stateful data, like file locations and database versions - # on your system were taken. It‘s perfectly fine and recommended to leave - # this value at the release version of the first install of this system. - # Before changing this value read the documentation for this option - # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). - system.stateVersion = "23.05"; # Did you read the comment? + system.stateVersion = "23.05"; }