mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
0151098d47
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.
29 lines
485 B
Nix
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;
|
|
}
|