ae6c81bf54
The previous startOnBoot approach booted mibook headless by default and locked the machine out: it is WiFi-only with credentials in KWallet, so with no desktop session NetworkManager never joins the network (no SSH), and boot stalled on NetworkManager-wait-online with the tty1 prompt buried under service logs. Replace it with a NixOS specialisation that adds a separate 'terminal' GRUB entry: - default entry boots KDE as before (identical to baseline); - 'terminal' entry boots multi-user.target with autologin for finn and a 'desktop' command to start SDDM on demand. Also disable NetworkManager-wait-online so boot never stalls on the network. Revert the kde-desktop startOnBoot option. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CfozKLQdUh5TzqyjSigLUx
28 lines
532 B
Nix
28 lines
532 B
Nix
# KDE Desktio Environment
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.my.profiles.kde-desktop;
|
|
in
|
|
{
|
|
options.my.profiles.kde-desktop = with lib; {
|
|
enable = mkEnableOption "KDE Desktop Environment";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services = {
|
|
displayManager.sddm.enable = true;
|
|
displayManager.sddm.wayland.enable = true;
|
|
desktopManager.plasma6.enable = true;
|
|
};
|
|
users.users.finn.packages = with pkgs; [
|
|
# Programms can be added here...
|
|
numix-icon-theme
|
|
];
|
|
};
|
|
}
|