nix-config/specializations/plasma.nix
Donovan Glover 0151098d47
chore: Update flake inputs
Notable changes include upgrading to Plasma 6 in the DE specialization
as well as updating the pqiv config to work with the latest home-manger
change.
2024-03-22 12:22:23 -04:00

29 lines
485 B
Nix

{ pkgs, lib, ... }:
{
services.xserver = {
enable = true;
displayManager = {
sddm.enable = true;
autoLogin = {
enable = true;
user = "user";
};
};
excludePackages = [ pkgs.xterm ];
};
services.desktopManager.plasma6.enable = true;
systemd.services = {
"getty@tty1".enable = false;
"autovt@tty1".enable = false;
};
programs.hyprland.enable = lib.mkForce false;
services.greetd.enable = lib.mkForce false;
}