mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
6c34cce882
Found thanks to nixd showing different colors for these.
29 lines
460 B
Nix
29 lines
460 B
Nix
{ lib, config, ... }:
|
|
|
|
let
|
|
inherit (config.modules.system) username;
|
|
in
|
|
{
|
|
services = {
|
|
displayManager = {
|
|
sddm.enable = true;
|
|
|
|
autoLogin = {
|
|
enable = true;
|
|
user = username;
|
|
};
|
|
};
|
|
|
|
desktopManager.plasma6.enable = true;
|
|
|
|
greetd.enable = lib.mkForce false;
|
|
};
|
|
|
|
systemd.services = {
|
|
"getty@tty1".enable = false;
|
|
"autovt@tty1".enable = false;
|
|
};
|
|
|
|
programs.hyprland.enable = lib.mkForce false;
|
|
}
|