NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
17.34k stars 13.58k forks source link

Installation of whitesur-kde package breaks plasma desktop #332846

Closed FreaxMATE closed 2 weeks ago

FreaxMATE commented 1 month ago

Describe the bug

When installing the whitesur-kde package and rebooting the desktop takes longer to load then usual and then only displays a black screen even without selecting the whitesur theme. Opening applications e.g. via shortcuts still works. I am new to nix so please wirte if further information is needed.

Steps To Reproduce

Steps to reproduce the behavior:

  1. put whitesur-kde package in the your nix configuration
  2. reboot
  3. login

Expected behavior

Desktop works as expected

Screenshots

Screenshot_20240806_231926

Additional context

My current configuration:

configuration.nix ```nix # Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). { config, pkgs, ... }: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ]; # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; networking.hostName = "thinkfreax"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # Configure network proxy if necessary # networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # Enable networking networking.networkmanager.enable = true; # Set your time zone. time.timeZone = "Europe/Berlin"; # Select internationalisation properties. i18n.defaultLocale = "en_GB.UTF-8"; i18n.extraLocaleSettings = { LC_ADDRESS = "de_DE.UTF-8"; LC_IDENTIFICATION = "de_DE.UTF-8"; LC_MEASUREMENT = "de_DE.UTF-8"; LC_MONETARY = "de_DE.UTF-8"; LC_NAME = "de_DE.UTF-8"; LC_NUMERIC = "de_DE.UTF-8"; LC_PAPER = "de_DE.UTF-8"; LC_TELEPHONE = "de_DE.UTF-8"; LC_TIME = "de_DE.UTF-8"; }; # Enable the X11 windowing system. # You can disable this if you're only using the Wayland session. services.xserver.enable = true; # Enable the KDE Plasma Desktop Environment. services.displayManager.sddm.enable = true; services.desktopManager.plasma6.enable = true; # Configure keymap in X11 services.xserver.xkb = { layout = "de"; variant = ""; }; # Configure console keymap console.keyMap = "de"; # Enable CUPS to print documents. services.printing.enable = true; # Enable sound with pipewire. hardware.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { enable = true; alsa.enable = true; alsa.support32Bit = true; pulse.enable = true; # If you want to use JACK applications, uncomment this #jack.enable = true; # use the example session manager (no others are packaged yet so this is enabled by default, # no need to redefine it in your config for now) #media-session.enable = true; }; # Enable touchpad support (enabled default in most desktopManager). # services.xserver.libinput.enable = true; # Define a user account. Don't forget to set a password with ‘passwd’. users.users.kunruh = { isNormalUser = true; description = "Konstantin Unruh"; extraGroups = [ "networkmanager" "wheel" ]; packages = with pkgs; [ kdePackages.kate # thunderbird ]; }; # Install firefox. programs.firefox.enable = true; programs.virt-manager.enable = true; # Allow unfree packages nixpkgs.config.allowUnfree = true; # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # wget ]; # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; # programs.gnupg.agent = { # enable = true; # enableSSHSupport = true; # }; # List services that you want to enable: # Enable the OpenSSH daemon. # services.openssh.enable = true; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; # Or disable the firewall altogether. networking.firewall.enable = false; nix.settings.experimental-features = [ "nix-command" "flakes" ]; # 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 = "24.05"; # Did you read the comment? } ```
flake.nix ```nix { description = "system"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; home-manager = { url = "github:nix-community/home-manager/release-24.05"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, home-manager, ... }@inputs: { nixosConfigurations.thinkfreax = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ./configuration.nix home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.users.kunruh = import ./home.nix; # Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix } ]; }; }; } ```
flake.lock ```nix { "nodes": { "home-manager": { "inputs": { "nixpkgs": [ "nixpkgs" ] }, "locked": { "lastModified": 1720042825, "narHash": "sha256-A0vrUB6x82/jvf17qPCpxaM+ulJnD8YZwH9Ci0BsAzE=", "owner": "nix-community", "repo": "home-manager", "rev": "e1391fb22e18a36f57e6999c7a9f966dc80ac073", "type": "github" }, "original": { "owner": "nix-community", "ref": "release-24.05", "repo": "home-manager", "type": "github" } }, "nixpkgs": { "locked": { "lastModified": 1722869614, "narHash": "sha256-7ojM1KSk3mzutD7SkrdSflHXEujPvW1u7QuqWoTLXQU=", "owner": "NixOS", "repo": "nixpkgs", "rev": "883180e6550c1723395a3a342f830bfc5c371f6b", "type": "github" }, "original": { "owner": "NixOS", "ref": "nixos-24.05", "repo": "nixpkgs", "type": "github" } }, "root": { "inputs": { "home-manager": "home-manager", "nixpkgs": "nixpkgs" } } }, "root": "root", "version": 7 } ```
home.nix ```nix { config, pkgs, ... }: { home.username = "kunruh"; home.homeDirectory = "/home/kunruh"; home.packages = with pkgs; [ # games zeroad appflowy distrobox papirus-icon-theme #whitesur-kde #whitesur-gtk-theme # graphics inkscape gimp # office libreoffice-qt evolution # internet brave chromium signal-desktop element-desktop yt-dlp logseq # music tidal-hifi bitwig-studio # video dragon mpv # security bitwarden # system btop # replacement of htop/nmon ]; # basic configuration of git, please change to your own programs.git = { enable = true; userName = "Konstantin Unruh"; userEmail = "freaxmate@protonmail.com"; delta.enable = true; lfs.enable = true; }; programs.vscode = { enable = true; extensions = with pkgs.vscode-extensions; [ james-yu.latex-workshop ms-python.python ms-toolsai.jupyter ]; }; programs.fish.enable = true; programs.bash = { enable = true; enableCompletion = true; }; home.stateVersion = "24.05"; programs.home-manager.enable = true; } ```

journctl log:

journalctl ```nix Aug 06 23:13:57 thinkfreax systemd[1203]: Startup finished in 182ms. Aug 06 23:13:58 thinkfreax sddm-helper[1218]: pam_kwallet5: final socket path: /run/user/1000/kwallet5.socket Aug 06 23:13:58 thinkfreax sddm-helper[1195]: Starting Wayland user session: "/nix/store/1p7yzb4b000yzkpnvca0fhkbrdvphb5n-sddm-unwrapped-0.21.0/share/sddm/scripts/wayland-session" "/nix/store/6j143zynvjwbpxafn31pc5w2317bi4hv-plasma-workspace-6.0.5.1/libexec/plasma-dbus-run-session-if-needed /nix/store/6j143zynvjwb> Aug 06 23:13:58 thinkfreax sddm-helper[1220]: Jumping to VT 3 Aug 06 23:13:58 thinkfreax sddm-helper[1220]: VT mode didn't need to be fixed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event4 - Power Button: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event5 - Video Bus: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event1 - Power Button: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event3 - Sleep Button: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event10 - Chicony USB Keyboard: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event11 - Chicony USB Keyboard System Control: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event12 - Chicony USB Keyboard Consumer Control: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event13 - HID-compliant Mouse HID-compliant Mouse: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event0 - AT Translated Set 2 keyboard: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event14 - ETPS/2 Elantech TrackPoint: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event15 - ETPS/2 Elantech Touchpad: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) event9 - ThinkPad Extra Buttons: device removed Aug 06 23:13:58 thinkfreax xserver-wrapper[1026]: (II) AIGLX: Suspending AIGLX clients for VT switch Aug 06 23:13:58 thinkfreax sddm[977]: Session started true Aug 06 23:13:58 thinkfreax dbus-daemon[660]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.23' (uid=1000 pid=1220 comm="/nix/store/6j143zynvjwbpxafn31pc5w2317bi4hv-plasma" label="kernel") Aug 06 23:13:58 thinkfreax systemd[1]: Starting Locale Service... Aug 06 23:13:58 thinkfreax systemd-timesyncd[648]: Network configuration changed, trying to establish connection. Aug 06 23:13:58 thinkfreax systemd-timesyncd[648]: Network configuration changed, trying to establish connection. Aug 06 23:13:58 thinkfreax systemd-timesyncd[648]: Network configuration changed, trying to establish connection. Aug 06 23:13:58 thinkfreax dbus-daemon[660]: [system] Successfully activated service 'org.freedesktop.locale1' Aug 06 23:13:58 thinkfreax systemd[1]: Started Locale Service. Aug 06 23:13:58 thinkfreax systemd[1203]: Created slice User Core Session Slice. Aug 06 23:13:58 thinkfreax systemd[1203]: Starting D-Bus User Message Bus... Aug 06 23:13:58 thinkfreax systemd[1203]: Started D-Bus User Message Bus. Aug 06 23:13:58 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.freedesktop.systemd1' Aug 06 23:13:59 thinkfreax systemd[1203]: Reloading requested from client PID 1220 ('.startplasma-wa')... Aug 06 23:13:59 thinkfreax systemd[1203]: Reloading... Aug 06 23:13:59 thinkfreax systemd[1203]: Reloading finished in 160 ms. Aug 06 23:13:59 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating service name='org.kde.KSplash' requested by ':1.0' (uid=1000 pid=1220 comm="/nix/store/6j143zynvjwbpxafn31pc5w2317bi4hv-plasma" label="kernel") Aug 06 23:13:59 thinkfreax systemd[1203]: Created slice User Background Tasks Slice. Aug 06 23:13:59 thinkfreax systemd[1203]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/kunruh/.cache/drkonqi/sentry-envelopes/*). Aug 06 23:13:59 thinkfreax systemd[1203]: Starting Rebuild KDE system configuration cache... Aug 06 23:13:59 thinkfreax systemd[1203]: Starting KDE Window Manager... Aug 06 23:13:59 thinkfreax systemd[1203]: Starting Baloo File Indexer Daemon... Aug 06 23:13:59 thinkfreax nixos-rebuild-sycoca-start[1234]: removed '/home/kunruh/.cache/ksycoca6_en-GB_AlxksEYMwoXjxEa3awL3i6n3Log=' Aug 06 23:13:59 thinkfreax systemd[1203]: Finished Rebuild KDE system configuration cache. Aug 06 23:13:59 thinkfreax systemd[1203]: Reached target Session services which should run early before the graphical session is brought up. Aug 06 23:13:59 thinkfreax systemd[1203]: Started KDE Window Manager. Aug 06 23:13:59 thinkfreax systemd[1203]: Starting KDE Config Module Initialization... Aug 06 23:13:59 thinkfreax systemd[1203]: Starting Splash screen shown during boot... Aug 06 23:13:59 thinkfreax systemd[1203]: Started Baloo File Indexer Daemon. Aug 06 23:13:59 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating via systemd: service name='org.freedesktop.portal.Desktop' unit='xdg-desktop-portal.service' requested by ':1.5' (uid=1000 pid=1241 comm="/nix/store/syrfc5azdkrshgqxdln2jwqi4ily6f95-plasma" label="kernel") Aug 06 23:13:59 thinkfreax systemd[1203]: Starting Portal service... Aug 06 23:13:59 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating via systemd: service name='org.freedesktop.portal.Documents' unit='xdg-document-portal.service' requested by ':1.8' (uid=1000 pid=1246 comm="/nix/store/zjfg080429dwkch0hzdmfvs4hzmgp7sh-xdg-de" label="kernel") Aug 06 23:13:59 thinkfreax systemd[1203]: Starting flatpak document portal service... Aug 06 23:13:59 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore' unit='xdg-permission-store.service' requested by ':1.9' (uid=1000 pid=1254 comm="/nix/store/zjfg080429dwkch0hzdmfvs4hzmgp7sh-xdg-de" label="kernel") Aug 06 23:13:59 thinkfreax systemd[1203]: Starting sandboxed app permission store... Aug 06 23:13:59 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore' Aug 06 23:13:59 thinkfreax systemd[1203]: Started sandboxed app permission store. Aug 06 23:13:59 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.freedesktop.portal.Documents' Aug 06 23:13:59 thinkfreax systemd[1203]: Started flatpak document portal service. Aug 06 23:13:59 thinkfreax dbus-daemon[660]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.26' (uid=1000 pid=1246 comm="/nix/store/zjfg080429dwkch0hzdmfvs4hzmgp7sh-xdg-de" label="kernel") Aug 06 23:13:59 thinkfreax kwin_wayland[1238]: No backend specified, automatically choosing drm Aug 06 23:13:59 thinkfreax systemd[1]: Starting RealtimeKit Scheduling Policy Service... Aug 06 23:13:59 thinkfreax systemd-timesyncd[648]: Network configuration changed, trying to establish connection. Aug 06 23:13:59 thinkfreax dbus-daemon[660]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1' Aug 06 23:13:59 thinkfreax systemd[1]: Started RealtimeKit Scheduling Policy Service. Aug 06 23:13:59 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.kde' unit='plasma-xdg-desktop-portal-kde.service' requested by ':1.8' (uid=1000 pid=1246 comm="/nix/store/zjfg080429dwkch0hzdmfvs4hzmgp7sh-xdg-de" label="kernel") Aug 06 23:13:59 thinkfreax systemd-timesyncd[648]: Contacted time server 141.98.136.83:123 (2.nixos.pool.ntp.org). Aug 06 23:13:59 thinkfreax systemd-timesyncd[648]: Initial clock synchronization to Tue 2024-08-06 23:13:59.491907 CEST. Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: OpenGL vendor string: AMD Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: OpenGL renderer string: AMD Radeon Graphics (radeonsi, renoir, LLVM 17.0.6, DRM 3.54, 6.6.44) Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: OpenGL version string: 4.6 (Core Profile) Mesa 24.0.7 Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: OpenGL shading language version string: 4.60 Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: Driver: Unknown Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: GPU class: Unknown Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: OpenGL version: 4.6 Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: GLSL version: 4.60 Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: Mesa version: 24.0.7 Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: Requires strict binding: no Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: Virtual Machine: no Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: Timer query support: yes Aug 06 23:14:00 thinkfreax systemd[1203]: Started PipeWire Multimedia Service. Aug 06 23:14:00 thinkfreax systemd[1203]: Started Multimedia Service Session Manager. Aug 06 23:14:00 thinkfreax rtkit-daemon[1271]: Successfully made thread 1292 of process 1292 owned by '1000' high priority at nice level -11. Aug 06 23:14:00 thinkfreax rtkit-daemon[1271]: Successfully made thread 1299 of process 1299 owned by '1000' high priority at nice level -11. Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1310]: (WW) Option "-listen" for file descriptors is deprecated Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1310]: Please use "-listenfd" instead. Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1310]: (WW) Option "-listen" for file descriptors is deprecated Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1310]: Please use "-listenfd" instead. Aug 06 23:14:00 thinkfreax kcminit_startup[1243]: Initializing "/nix/store/syrfc5azdkrshgqxdln2jwqi4ily6f95-plasma-workspace-5.27.11.1/lib/qt-5.15.14/plugins/plasma/kcms/systemsettings/kcm_style.so" Aug 06 23:14:00 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.kde.KSplash' Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: kf.windowsystem: static bool KX11Extras::mapViewport() may only be used on X11 Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1342]: The XKEYBOARD keymap compiler (xkbcomp) reports: Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1342]: > Warning: Unsupported maximum keycode 708, clipping. Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1342]: > X11 cannot support keycodes above 255. Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1342]: > Warning: Could not resolve keysym XF86KbdInputAssistPrevgrou Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1342]: > Warning: Could not resolve keysym XF86KbdInputAssistNextgrou Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1342]: Errors from xkbcomp are not fatal to the X server Aug 06 23:14:00 thinkfreax pipewire[1292]: mod.jackdbus-detect: Failed to receive jackdbus reply: org.freedesktop.DBus.Error.ServiceUnknown: The name org.jackaudio.service was not provided by any .service files Aug 06 23:14:00 thinkfreax rtkit-daemon[1271]: Successfully made thread 1345 of process 1292 owned by '1000' RT at priority 20. Aug 06 23:14:00 thinkfreax kcminit_startup[1243]: Initializing "/nix/store/syrfc5azdkrshgqxdln2jwqi4ily6f95-plasma-workspace-5.27.11.1/lib/qt-5.15.14/plugins/plasma/kcms/systemsettings/kcm_fonts.so" Aug 06 23:14:00 thinkfreax kwin_wayland[1238]: Failed to load overview: "qrc:/overview/qml/main.qml:607 Type WindowHeap unavailable\nqrc:/qt/qml/org/kde/kwin/private/effects/WindowHeap.qml:137 Type WindowHeapDelegate unavailable\nqrc:/qt/qml/org/kde/kwin/private/effects/WindowHeapDelegate.qml:449 Type PC3.Button u> Aug 06 23:14:00 thinkfreax systemd[1203]: Started KDE Config Module Initialization. Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1344]: Initializing "/nix/store/syrfc5azdkrshgqxdln2jwqi4ily6f95-plasma-workspace-5.27.11.1/lib/qt-5.15.14/plugins/plasma/kcms/systemsettings/kcm_fonts.so" Aug 06 23:14:00 thinkfreax kwin_wayland_wrapper[1344]: Initializing "/nix/store/syrfc5azdkrshgqxdln2jwqi4ily6f95-plasma-workspace-5.27.11.1/lib/qt-5.15.14/plugins/plasma/kcms/systemsettings/kcm_style.so" Aug 06 23:14:00 thinkfreax systemd[1203]: Starting KDE Configuration Module Initialization (Phase 1)... Aug 06 23:14:00 thinkfreax systemd[1203]: Starting KDE Session Management Server... Aug 06 23:14:00 thinkfreax systemd[1203]: Started Unlock kwallet from pam credentials. Aug 06 23:14:00 thinkfreax systemd[1203]: Finished KDE Configuration Module Initialization (Phase 1). Aug 06 23:14:00 thinkfreax pam_kwallet_init[1364]: 2024/08/06 23:14:00 socat[1364] W address is opened in read-write mode but only supports read-only Aug 06 23:14:00 thinkfreax wireplumber[1299]: spa.bluez5: BlueZ system service is not available Aug 06 23:14:00 thinkfreax ksmserver[1358]: Qt: Session management error: networkIdsList argument is NULL Aug 06 23:14:00 thinkfreax ksmserver[1358]: Failed to write ice auth file entry Aug 06 23:14:00 thinkfreax ksmserver[1358]: Failed to write xsmp ice auth file entry Aug 06 23:14:00 thinkfreax ksmserver[1358]: Failed to write ice auth file entry Aug 06 23:14:00 thinkfreax ksmserver[1358]: Failed to write xsmp ice auth file entry Aug 06 23:14:00 thinkfreax systemd[1203]: Started KDE Session Management Server. Aug 06 23:14:00 thinkfreax systemd[1203]: Starting KDE Plasma Workspace... Aug 06 23:14:00 thinkfreax wireplumber[1299]: [0:00:14.636430125] [1299] INFO IPAManager ipa_manager.cpp:143 libcamera is not installed. Adding '/nix/store/src/ipa' to the IPA search path Aug 06 23:14:00 thinkfreax wireplumber[1299]: [0:00:14.637230519] [1299] INFO Camera camera_manager.cpp:284 libcamera v0.2.0 Aug 06 23:14:00 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating via systemd: service name='org.kde.ActivityManager' unit='plasma-kactivitymanagerd.service' requested by ':1.20' (uid=1000 pid=1417 comm="/nix/store/syrfc5azdkrshgqxdln2jwqi4ily6f95-plasma" label="kernel") Aug 06 23:14:00 thinkfreax systemd[1203]: Starting KActivityManager Activity manager Service... Aug 06 23:14:00 thinkfreax systemd[1203]: Started KDE Plasma Workspace. Aug 06 23:14:00 thinkfreax systemd[1203]: Reached target KDE Plasma Workspace Core. Aug 06 23:14:00 thinkfreax systemd[1203]: Started Consume pending crashes using DrKonqi. Aug 06 23:14:00 thinkfreax systemd[1203]: Started Proxies GTK DBus menus to a Plasma readable format. Aug 06 23:14:00 thinkfreax systemd[1203]: Starting KDE PolicyKit Authentication Agent... Aug 06 23:14:00 thinkfreax systemd[1203]: Starting Powerdevil... Aug 06 23:14:00 thinkfreax systemd[1203]: Starting Xdg Desktop Portal For KDE... Aug 06 23:14:00 thinkfreax systemd[1203]: Started Handle legacy xembed system tray icons. Aug 06 23:14:00 thinkfreax gmenudbusmenuproxy[1449]: Qt: Session management error: None of the authentication protocols specified are supported Aug 06 23:14:00 thinkfreax xembedsniproxy[1453]: Qt: Session management error: None of the authentication protocols specified are supported Aug 06 23:14:00 thinkfreax kactivitymanagerd[1444]: kf.windowsystem: virtual void KX11Extras::connectNotify(const QMetaMethod&) may only be used on X11 Aug 06 23:14:00 thinkfreax kactivitymanagerd[1444]: kf.windowsystem: virtual void KX11Extras::connectNotify(const QMetaMethod&) may only be used on X11 Aug 06 23:14:00 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.kde.ActivityManager' Aug 06 23:14:00 thinkfreax systemd[1203]: Started KActivityManager Activity manager Service. Aug 06 23:14:00 thinkfreax plasmashell[1417]: Aborting shell load: The activity manager daemon (kactivitymanagerd) is not running. Aug 06 23:14:00 thinkfreax plasmashell[1417]: If this Plasma has been installed into a custom prefix, verify that its D-Bus services dir is known to the system for the daemon to be activatable. Aug 06 23:14:00 thinkfreax plasmashell[1417]: Aborting shell load: The activity manager daemon (kactivitymanagerd) is not running. Aug 06 23:14:00 thinkfreax plasmashell[1417]: If this Plasma has been installed into a custom prefix, verify that its D-Bus services dir is known to the system for the daemon to be activatable. Aug 06 23:14:00 thinkfreax plasmashell[1417]: kf.plasma.quick: Applet preload policy set to 1 Aug 06 23:14:00 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.freedesktop.impl.portal.desktop.kde' Aug 06 23:14:00 thinkfreax systemd[1203]: Started Xdg Desktop Portal For KDE. Aug 06 23:14:00 thinkfreax polkit-kde-authentication-agent-1[1450]: New PolkitAgentListener 0x239b8b0 Aug 06 23:14:00 thinkfreax polkit-kde-authentication-agent-1[1450]: Adding new listener PolkitQt1::Agent::Listener(0x23176d0) for 0x239b8b0 Aug 06 23:14:00 thinkfreax polkit-kde-authentication-agent-1[1450]: Listener online Aug 06 23:14:00 thinkfreax systemd[1203]: Started KDE PolicyKit Authentication Agent. Aug 06 23:14:00 thinkfreax polkitd[785]: Registered Authentication Agent for unix-session:2 (system bus name :1.37 [/nix/store/x3kp0i021f0nvnqzbzin779q2qqnhbrw-polkit-kde-agent-1-6.0.5/libexec/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_GB.UTF-8) Aug 06 23:14:00 thinkfreax polkit-kde-authentication-agent-1[1450]: Authentication agent result: true Aug 06 23:14:00 thinkfreax .xdg-desktop-po[1246]: Choosing kwallet.portal for org.freedesktop.impl.portal.Secret via the deprecated UseIn key Aug 06 23:14:00 thinkfreax .xdg-desktop-po[1246]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file Aug 06 23:14:00 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.freedesktop.portal.Desktop' Aug 06 23:14:00 thinkfreax systemd[1203]: Started Portal service. Aug 06 23:14:00 thinkfreax dbus-daemon[660]: [system] Activating via systemd: service name='net.hadess.PowerProfiles' unit='power-profiles-daemon.service' requested by ':1.26' (uid=1000 pid=1246 comm="/nix/store/zjfg080429dwkch0hzdmfvs4hzmgp7sh-xdg-de" label="kernel") Aug 06 23:14:01 thinkfreax systemd[1]: Starting Power Profiles daemon... Aug 06 23:14:01 thinkfreax systemd-timesyncd[648]: Network configuration changed, trying to establish connection. Aug 06 23:14:01 thinkfreax systemd-timesyncd[648]: Network configuration changed, trying to establish connection. Aug 06 23:14:01 thinkfreax dbus-daemon[660]: [system] Activating service name='org.kde.powerdevil.discretegpuhelper' requested by ':1.34' (uid=1000 pid=1451 comm="/nix/store/00m6r37r9jayb4249ddhiz1vsjgcgc4g-powerd" label="kernel") (using servicehelper) Aug 06 23:14:01 thinkfreax dbus-daemon[660]: [system] Successfully activated service 'net.hadess.PowerProfiles' Aug 06 23:14:01 thinkfreax systemd[1]: Started Power Profiles daemon. Aug 06 23:14:01 thinkfreax org.kde.powerdevil.discretegpuhelper[1545]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8. Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead. If this causes problems, reconfigure your locale. See the locale(1) manual for more information. Aug 06 23:14:01 thinkfreax dbus-daemon[660]: [system] Successfully activated service 'org.kde.powerdevil.discretegpuhelper' Aug 06 23:14:01 thinkfreax dbus-daemon[660]: [system] Activating service name='org.kde.powerdevil.chargethresholdhelper' requested by ':1.34' (uid=1000 pid=1451 comm="/nix/store/00m6r37r9jayb4249ddhiz1vsjgcgc4g-powerd" label="kernel") (using servicehelper) Aug 06 23:14:01 thinkfreax org.kde.powerdevil.chargethresholdhelper[1555]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8. Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead. If this causes problems, reconfigure your locale. See the locale(1) manual for more information. Aug 06 23:14:01 thinkfreax systemd-timesyncd[648]: Contacted time server 141.98.136.83:123 (2.nixos.pool.ntp.org). Aug 06 23:14:01 thinkfreax dbus-daemon[660]: [system] Successfully activated service 'org.kde.powerdevil.chargethresholdhelper' Aug 06 23:14:01 thinkfreax dbus-daemon[660]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.34' (uid=1000 pid=1451 comm="/nix/store/00m6r37r9jayb4249ddhiz1vsjgcgc4g-powerd" label="kernel") (using servicehelper) Aug 06 23:14:01 thinkfreax org.kde.powerdevil.backlighthelper[1562]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8. Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead. If this causes problems, reconfigure your locale. See the locale(1) manual for more information. Aug 06 23:14:01 thinkfreax dbus-daemon[660]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper' Aug 06 23:14:01 thinkfreax systemd[1203]: Started Powerdevil. Aug 06 23:14:01 thinkfreax systemd[1203]: Reached target KDE Plasma Workspace. Aug 06 23:14:01 thinkfreax systemd[1203]: Reached target Current graphical user session. Aug 06 23:14:01 thinkfreax systemd[1203]: Reached target plasma-workspace-wayland.target. Aug 06 23:14:01 thinkfreax systemd[1203]: Starting AT-SPI D-Bus Bus... Aug 06 23:14:01 thinkfreax systemd[1203]: Starting Accessibility... Aug 06 23:14:01 thinkfreax systemd[1203]: Starting Klipper... Aug 06 23:14:01 thinkfreax systemd[1203]: Starting Events and Tasks Reminders... Aug 06 23:14:01 thinkfreax systemd[1203]: Starting Calendar Reminders... Aug 06 23:14:01 thinkfreax systemd[1203]: Starting User folders update... Aug 06 23:14:01 thinkfreax org_kde_powerdevil[1451]: org.kde.powerdevil: Handle button events action could not check for screen configuration Aug 06 23:14:01 thinkfreax systemd[1203]: Starting KSplash "ready" Stage... Aug 06 23:14:01 thinkfreax systemd[1203]: Starting KDE Session Restoration... Aug 06 23:14:01 thinkfreax systemd[1203]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'. Aug 06 23:14:01 thinkfreax systemd[1203]: Condition check resulted in AT-SPI D-Bus Bus being skipped. Aug 06 23:14:01 thinkfreax systemd[1203]: Started Events and Tasks Reminders. Aug 06 23:14:01 thinkfreax systemd[1203]: Finished KSplash "ready" Stage. Aug 06 23:14:01 thinkfreax systemd[1203]: Started User folders update. Aug 06 23:14:01 thinkfreax systemd[1203]: Started Accessibility. Aug 06 23:14:01 thinkfreax systemd[1203]: Finished KDE Session Restoration. Aug 06 23:14:01 thinkfreax systemd[1203]: Started Calendar Reminders. Aug 06 23:14:01 thinkfreax plasmashell[1417]: "file:///nix/store/nsvslb7sh1mazh1ngfxvpdb739p3k54n-plasma-desktop-6.0.5/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml" Aug 06 23:14:01 thinkfreax plasmashell[1417]: "Error loading QML file.\n201: Unexpected token `.'\n202: Expected token `:'\n" Aug 06 23:14:01 thinkfreax plasmashell[1417]: Containment graphic object not valid Aug 06 23:14:01 thinkfreax plasmashell[1417]: "file:///nix/store/nsvslb7sh1mazh1ngfxvpdb739p3k54n-plasma-desktop-6.0.5/share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml" Aug 06 23:14:01 thinkfreax plasmashell[1417]: "Error loading QML file.\n201: Unexpected token `.'\n202: Expected token `:'\n" Aug 06 23:14:01 thinkfreax plasmashell[1417]: Containment graphic object not valid Aug 06 23:14:01 thinkfreax systemd[1203]: app-klipper@autostart.service: Skipped due to 'exec-condition'. Aug 06 23:14:01 thinkfreax systemd[1203]: Condition check resulted in Klipper being skipped. Aug 06 23:14:01 thinkfreax systemd[1203]: Reached target Startup of XDG autostart applications. Aug 06 23:14:01 thinkfreax kaccess[1589]: Xlib XKB extension major= 1 minor= 0 Aug 06 23:14:01 thinkfreax kaccess[1589]: X server XKB extension major= 1 minor= 0 Aug 06 23:14:01 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.32' (uid=1000 pid=1633 comm="/nix/store/q0igsgf0fjw34yzvh6a1z4jj4gsj2cpr-glib-2" label="kernel") Aug 06 23:14:01 thinkfreax systemd[1203]: Starting User preferences database... Aug 06 23:14:01 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating via systemd: service name='org.gnome.evolution.dataserver.Sources5' unit='evolution-source-registry.service' requested by ':1.31' (uid=1000 pid=1580 comm="/nix/store/vbhib7lzqfq88wmz94q0v9kms4amydw5-evolut" label="kernel") Aug 06 23:14:01 thinkfreax systemd[1203]: Starting Evolution source registry... Aug 06 23:14:01 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'ca.desrt.dconf' Aug 06 23:14:01 thinkfreax systemd[1203]: Started User preferences database. Aug 06 23:14:01 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.gnome.evolution.dataserver.Sources5' Aug 06 23:14:01 thinkfreax systemd[1203]: Started Evolution source registry. Aug 06 23:14:01 thinkfreax plasmashell[1417]: "file:///nix/store/nsvslb7sh1mazh1ngfxvpdb739p3k54n-plasma-desktop-6.0.5/share/plasma/shells/org.kde.plasma.desktop/contents/views/Panel.qml" Aug 06 23:14:01 thinkfreax plasmashell[1417]: "Error loading QML file.\n27: Unexpected token `.'\n27: Unexpected token `.'\n29: Expected token `:'\n" Aug 06 23:14:01 thinkfreax plasmashell[1417]: Containment graphic object not valid Aug 06 23:14:01 thinkfreax plasmashell[1417]: "file:///nix/store/nsvslb7sh1mazh1ngfxvpdb739p3k54n-plasma-desktop-6.0.5/share/plasma/shells/org.kde.plasma.desktop/contents/views/Panel.qml" Aug 06 23:14:01 thinkfreax plasmashell[1417]: "Error loading QML file.\n27: Unexpected token `.'\n27: Unexpected token `.'\n29: Expected token `:'\n" Aug 06 23:14:01 thinkfreax plasmashell[1417]: Containment graphic object not valid Aug 06 23:14:01 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating via systemd: service name='org.gnome.evolution.dataserver.Calendar8' unit='evolution-calendar-factory.service' requested by ':1.31' (uid=1000 pid=1580 comm="/nix/store/vbhib7lzqfq88wmz94q0v9kms4amydw5-evolut" label="kernel") Aug 06 23:14:01 thinkfreax systemd[1203]: Starting Evolution calendar service... Aug 06 23:14:01 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.gnome.evolution.dataserver.Calendar8' Aug 06 23:14:01 thinkfreax systemd[1203]: Started Evolution calendar service. Aug 06 23:14:01 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Activating via systemd: service name='org.gnome.evolution.dataserver.AddressBook10' unit='evolution-addressbook-factory.service' requested by ':1.36' (uid=1000 pid=1666 comm="/nix/store/vbhib7lzqfq88wmz94q0v9kms4amydw5-evolut" label="kernel") Aug 06 23:14:01 thinkfreax systemd[1203]: Starting Evolution address book service... Aug 06 23:14:01 thinkfreax dbus-daemon[1223]: [session uid=1000 pid=1223] Successfully activated service 'org.gnome.evolution.dataserver.AddressBook10' Aug 06 23:14:01 thinkfreax systemd[1203]: Started Evolution address book service. Aug 06 23:14:02 thinkfreax systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully. Aug 06 23:14:04 thinkfreax baloo_file_extractor[1734]: kf.idletime: Could not find any system poller plugin Aug 06 23:14:04 thinkfreax baloo_file_extractor[1734]: qt.core.qobject.connect: QObject::connect(KAbstractIdleTimePoller, KIdleTime): invalid nullptr parameter Aug 06 23:14:04 thinkfreax baloo_file_extractor[1734]: qt.core.qobject.connect: QObject::connect(KAbstractIdleTimePoller, KIdleTime): invalid nullptr parameter Aug 06 23:14:08 thinkfreax systemd[1]: Stopping User Manager for UID 175... Aug 06 23:14:08 thinkfreax systemd[1054]: Activating special unit Exit the Session... Aug 06 23:14:08 thinkfreax systemd[1054]: Stopped target Main User Target. Aug 06 23:14:08 thinkfreax systemd[1054]: Closed Socket to launch DrKonqi for a systemd-coredump crash. Aug 06 23:14:08 thinkfreax systemd[1054]: Stopping D-Bus User Message Bus... Aug 06 23:14:08 thinkfreax systemd[1054]: Stopped D-Bus User Message Bus. Aug 06 23:14:08 thinkfreax systemd[1054]: Removed slice User Core Session Slice. Aug 06 23:14:08 thinkfreax systemd[1054]: Stopped target Basic System. Aug 06 23:14:08 thinkfreax systemd[1054]: Stopped target Paths. Aug 06 23:14:08 thinkfreax systemd[1054]: Stopped Submitting pending crash events. Aug 06 23:14:08 thinkfreax systemd[1054]: Stopped target Sockets. Aug 06 23:14:08 thinkfreax systemd[1054]: Stopped target Timers. Aug 06 23:14:08 thinkfreax systemd[1054]: Closed D-Bus User Message Bus Socket. Aug 06 23:14:08 thinkfreax systemd[1054]: Closed PipeWire PulseAudio. Aug 06 23:14:08 thinkfreax systemd[1054]: Closed PipeWire Multimedia System Sockets. Aug 06 23:14:08 thinkfreax systemd[1054]: Removed slice User Application Slice. Aug 06 23:14:08 thinkfreax systemd[1054]: Reached target Shutdown. Aug 06 23:14:08 thinkfreax systemd[1054]: Finished Exit the Session. Aug 06 23:14:08 thinkfreax systemd[1054]: Reached target Exit the Session. Aug 06 23:14:08 thinkfreax (sd-pam)[1057]: pam_unix(systemd-user:session): session closed for user sddm Aug 06 23:14:08 thinkfreax systemd[1]: user@175.service: Deactivated successfully. Aug 06 23:14:08 thinkfreax systemd[1]: Stopped User Manager for UID 175. Aug 06 23:14:08 thinkfreax systemd[1]: Stopping User Runtime Directory /run/user/175... Aug 06 23:14:08 thinkfreax systemd[1]: run-user-175.mount: Deactivated successfully. Aug 06 23:14:08 thinkfreax systemd[1]: user-runtime-dir@175.service: Deactivated successfully. Aug 06 23:14:08 thinkfreax systemd[1]: Stopped User Runtime Directory /run/user/175. Aug 06 23:14:20 thinkfreax systemd[1]: systemd-hostnamed.service: Deactivated successfully. Aug 06 23:14:30 thinkfreax systemd[1203]: Finished Splash screen shown during boot. Aug 06 23:14:30 thinkfreax systemd[1203]: plasma-ksplash.service: Consumed 2.305s CPU time. Aug 06 23:14:31 thinkfreax systemd[1]: systemd-localed.service: Deactivated successfully. Aug 06 23:14:32 thinkfreax systemd[1203]: Started Konsole - Terminal. ```

Notify maintainers

@romildo

Metadata

[user@system:~]$ nix-shell -p nix-info --run "nix-info -m"
 - system: `"x86_64-linux"`
 - host os: `Linux 6.6.44, NixOS, 24.05 (Uakari), 24.05.20240805.883180e`
 - multi-user?: `yes`
 - sandbox: `yes`
 - version: `nix-env (Nix) 2.18.5`
 - nixpkgs: `/nix/store/79j6vc975md1w3f2fgli3xw657zyxxyc-source`

Add a :+1: reaction to issues you find important.

SuperSandro2000 commented 3 weeks ago

@romildo

romildo commented 2 weeks ago

@FreaxMATE, can you review https://github.com/NixOS/nixpkgs/pull/336563, please?