Indeed you are right. According to nixos.org weston is supposed to be the default, so I thought I was trying something new with kwin, but it turns out to actually be the default. Using weston solves the issue. I guess the “documentation” hasn’t been updated.
However, I’m still having problems loading the theme. I’ve added the dependencies as suggested. Just for the record, my stanza is
services.displayManager.sddm = {
enable = true;
theme = "sddm-astronaut-theme";
wayland.enable = true;
wayland.compositor = "weston";
extraPackages = [
pkgs.sddm-astronaut
pkgs.kdePackages.qtsvg
pkgs.kdePackages.qtmultimedia
pkgs.kdePackages.qtvirtualkeyboard
];
};
```
The boot output of which is
❯ grep sddm <(journalctl -b)
Apr 09 20:07:47 nixos sddm[1185]: Initializing...
Apr 09 20:07:47 nixos sddm[1185]: Starting...
Apr 09 20:07:47 nixos sddm[1185]: Logind interface found
Apr 09 20:07:47 nixos sddm[1185]: Adding new display...
Apr 09 20:07:47 nixos sddm[1185]: Loaded empty theme configuration
Apr 09 20:07:47 nixos sddm[1185]: Using VT 1
Apr 09 20:07:47 nixos sddm[1185]: Display server started.
Apr 09 20:07:47 nixos sddm[1185]: Socket server starting...
Apr 09 20:07:47 nixos sddm[1185]: Socket server started.
Apr 09 20:07:47 nixos sddm[1185]: Loading theme configuration from "/run/current-system/sw/share/sddm/themes/sddm-astronaut-theme/Themes/astronaut.conf"
Apr 09 20:07:47 nixos sddm[1185]: Greeter starting...
Apr 09 20:07:47 nixos sddm-helper[1250]: [PAM] Starting...
Apr 09 20:07:47 nixos sddm-helper[1250]: [PAM] Authenticating...
Apr 09 20:07:47 nixos sddm-helper[1250]: [PAM] returning.
Apr 09 20:07:47 nixos systemd-logind[984]: New session 'c1' of user 'sddm' with class 'greeter' and type 'wayland'.
Apr 09 20:07:47 nixos (systemd)[1322]: pam_unix(systemd-user:session): session opened for user sddm(uid=175) by (uid=0)
Apr 09 20:07:47 nixos systemd-logind[984]: New session '1' of user 'sddm' with class 'manager-early' and type 'unspecified'.
Apr 09 20:07:48 nixos systemd[1322]: Cleanup lingering KCrash metadata skipped, unmet condition check ConditionPathExistsGlob=/var/lib/sddm/.cache/kcrash-metadata/*.ini
Apr 09 20:07:48 nixos systemd[1322]: Submitting pending crash events skipped, unmet condition check ConditionPathExistsGlob=/var/lib/sddm/.cache/drkonqi/sentry-envelopes/*
Apr 09 20:07:48 nixos systemd[1322]: Cleanup lingering KCrash metadata skipped, unmet condition check ConditionPathExistsGlob=/var/lib/sddm/.cache/kcrash-metadata/*.ini
Apr 09 20:07:48 nixos systemd[1]: Started Session c1 of User sddm.
Apr 09 20:07:48 nixos sddm-helper[1496]: Jumping to VT 1
Apr 09 20:07:48 nixos sddm-helper[1496]: VT mode fixed
Apr 09 20:07:48 nixos sddm[1185]: Greeter session started successfully
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: Starting Wayland process "/nix/store/jx64dzf75xhd421swdiimlpgb4kv8aml-weston-15.0.0/bin/weston --shell=kiosk -c /nix/store/zrd9ppkv2mg02zwrba0ldchvsgljs2w9-weston.ini" "sddm"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: started succesfully "/nix/store/jx64dzf75xhd421swdiimlpgb4kv8aml-weston-15.0.0/bin/weston --shell=kiosk -c /nix/store/zrd9ppkv2mg02zwrba0ldchvsgljs2w9-weston.ini"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "Date: 2026-04-09 MDT\n[20:07:48.256] weston 15.0.0\n https://wayland.freedesktop.org\n Bug reports to: https://gitlab.freedesktop.org/wayland/weston/issues/\n Build: 15.0.0\n[20:07:48.256] Command line: /nix/store/jx64dzf75xhd421swdiimlpgb4kv8aml-weston-15.0.0/bin/weston --shell=kiosk -c /nix/store/zrd9ppkv2mg02zwrba0ldchvsgljs2w9-weston.ini\n[20:07:48.256] OS: Linux, 6.18.21, #1-NixOS SMP PREEMPT_DYNAMIC Thu Apr 2 11:23:33 UTC 2026, x86_64\n[20:07:48.256] Flight recorder: enabled, scopes subscribed: log\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.256] Using config file '/nix/store/zrd9ppkv2mg02zwrba0ldchvsgljs2w9-weston.ini'\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.256] Output repaint window is 7 ms maximum.\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.257] Loading module '/nix/store/jx64dzf75xhd421swdiimlpgb4kv8aml-weston-15.0.0/lib/libweston-15/drm-backend.so'\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.259] initializing drm backend\n[20:07:48.259] Trying libseat launcher...\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.259] [libseat/backend/seatd.c:64] Could not connect to socket /run/seatd.sock: No such file or directory\n[20:07:48.259] [libseat/libseat.c:76] Backend 'seatd' failed to open seat, skipping\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.265] [libseat/libseat.c:73] Seat opened with backend 'logind'\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.265] libseat: session control granted\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.266] using /dev/dri/card1\n[20:07:48.266] DRM: supports atomic modesetting\n[20:07:48.266] DRM: supports GBM modifiers\n[20:07:48.266] DRM: supports Atomic async page flip\n[20:07:48.266] DRM: supports picture aspect ratio\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.380] Loading module '/nix/store/jx64dzf75xhd421swdiimlpgb4kv8aml-weston-15.0.0/lib/libweston-15/gl-renderer.so'\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.519] Using rendering device: /dev/dri/renderD128\n[20:07:48.519] EGL version: 1.5\n[20:07:48.519] EGL vendor: Mesa Project\n[20:07:48.519] EGL client APIs: OpenGL OpenGL_ES \n[20:07:48.519] EGL features:\n EGL Wayland extension: no\n context priority: yes\n buffer age: yes\n partial update: yes\n swap buffers with damage: no\n configless context: yes\n surfaceless context: yes\n dmabuf support: modifiers\n fence sync: yes (native, wait)\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.527] GL version: OpenGL ES 3.2 Mesa 26.0.4\n[20:07:48.527] GLSL version: OpenGL ES GLSL ES 3.20\n[20:07:48.527] GL vendor: Intel\n[20:07:48.527] GL renderer: Mesa Intel(R) Iris(R) Xe Graphics (TGL GT2)\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.539] GL ES 3.2 - renderer features:\n read-back format: ARGB8888\n glReadPixels supports y-flip: yes\n glReadPixels supports PBO: yes\n wl_shm 10 bpc formats: yes\n wl_shm 16 bpc formats: yes\n wl_shm half-float formats: yes\n internal R and RG formats: yes\n OES_EGL_image_external: yes\n GPU timeline: yes\n Texture immutability: yes\n Required precision: yes\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.539] Using GL renderer\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.555] event12 - Video Bus: is tagged by udev as: Keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.555] event12 - Video Bus: device is a keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.556] event11 - Video Bus: is tagged by udev as: Keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.556] event11 - Video Bus: device is a keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.558] event6 - Power Button: is tagged by udev as: Keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.558] event6 - Power Button: device is a keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.559] event5 - Lid Switch: is tagged by udev as: Switch\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.559] event5 - Lid Switch: device is a switch device\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.561] event1 - Logitech Wireless Keyboard PID:4075: is tagged by udev as: Keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.561] event1 - Logitech Wireless Keyboard PID:4075: device is a keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.562] event2 - Logitech Wireless Mouse: is tagged by udev as: Keyboard Mouse\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.562] event2 - Logitech Wireless Mouse: device is a pointer\n[20:07:48.562] event2 - Logitech Wireless Mouse: device is a keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.577] event8 - DELL0A24:00 06CB:CDD6 Mouse: is tagged by udev as: Mouse\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.577] event8 - DELL0A24:00 06CB:CDD6 Mouse: device is a pointer\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.579] event9 - DELL0A24:00 06CB:CDD6 Touchpad: is tagged by udev as: Touchpad\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.588] event9 - DELL0A24:00 06CB:CDD6 Touchpad: device is a touchpad\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.591] event13 - sof-hda-dsp Headphone Mic: is tagged by udev as: Switch\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.593] event13 - not using input device '/dev/input/event13'\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.597] event14 - sof-hda-dsp HDMI/DP,pcm=3: is tagged by udev as: Switch\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.598] event14 - not using input device '/dev/input/event14'\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.599] event15 - sof-hda-dsp HDMI/DP,pcm=4: is tagged by udev as: Switch\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.600] event15 - not using input device '/dev/input/event15'\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.601] event16 - sof-hda-dsp HDMI/DP,pcm=5: is tagged by udev as: Switch\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.602] event16 - not using input device '/dev/input/event16'\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.603] event3 - Intel HID events: is tagged by udev as: Keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.603] event3 - Intel HID events: device is a keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.604] event7 - Intel HID 5 button array: is tagged by udev as: Keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.604] event7 - Intel HID 5 button array: device is a keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.606] event4 - Dell WMI hotkeys: is tagged by udev as: Keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.606] event4 - Dell WMI hotkeys: device is a keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.607] event0 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.607] event0 - AT Translated Set 2 keyboard: device is a keyboard\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.609] event10 - PS/2 Generic Mouse: is tagged by udev as: Mouse\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.609] event10 - PS/2 Generic Mouse: device is a pointer\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.622] libinput: configuring device \"Video Bus\".\n[20:07:48.622] libinput: configuring device \"Video Bus\".\n[20:07:48.622] libinput: configuring device \"Power Button\".\n[20:07:48.622] libinput: configuring device \"Lid Switch\".\n[20:07:48.622] unknown libinput event 900\n[20:07:48.622] libinput: configuring device \"Logitech Wireless Keyboard PID:4075\".\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.622] libinput: configuring device \"Logitech Wireless Mouse\".\n[20:07:48.622] left-handed=false\n[20:07:48.622] libinput: configuring device \"DELL0A24:00 06CB:CDD6 Mouse\".\n[20:07:48.622] left-handed=false\n[20:07:48.622] libinput: configuring device \"DELL0A24:00 06CB:CDD6 Touchpad\".\n[20:07:48.622] enable-tap=true.\n[20:07:48.622] left-handed=false\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.622] libinput: configuring device \"Intel HID events\".\n[20:07:48.622] libinput: configuring device \"Intel HID 5 button array\".\n[20:07:48.622] libinput: configuring device \"Dell WMI hotkeys\".\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.622] libinput: configuring device \"AT Translated Set 2 keyboard\".\n[20:07:48.622] libinput: configuring device \"PS/2 Generic Mouse\".\n[20:07:48.622] left-handed=false\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.622] DRM: head 'eDP-1' found, connector 342 is connected, EDID make 'BOE', model '0x097D', serial ''\n Supported EOTF modes: SDR\n Supported colorimetry modes: default\n Supported VRR modes: (none), \n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.649] DRM: EDID for the following head fails conformity:\nBlock 1, CTA-861 Extension Block:\n Audio Data Block: Audio Format Code 0x00 is reserved.\n\n[20:07:48.649] DRM: head 'HDMI-A-1' found, connector 351 is connected, EDID make 'VIZIO, Inc', model 'E371VL', serial 'LAUKHJKM00000'\n Supported EOTF modes: SDR\n Supported colorimetry modes: default\n Supported VRR modes: (none), \n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.649] Registered plugin API 'weston_drm_output_api_v1' of size 40\n[20:07:48.649] Registered plugin API 'weston_drm_virtual_output_api_v2' of size 48\n[20:07:48.649] Color manager: no-op\n protocol support: no\n[20:07:48.649] Setting output 'eDP-1' to color AUTO format\n[20:07:48.649] Output 'eDP-1' attempts EOTF mode SDR and colorimetry mode default.\n[20:07:48.649] Output 'eDP-1' using color profile: stock sRGB color profile\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.649] Chosen EGL config details: id: 61 rgba: 8 8 8 0 buf: 24 dep: 0 stcl: 0 int: 1-1 type: win val: fix vis_id: XRGB8888 (0x34325258)\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.649] Output eDP-1 (crtc 108) video modes:\n 1920x1080@60.0, preferred, current, 151.3 MHz\n 1920x1080@48.0, 121.0 MHz\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.649] associating input device event12 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event11 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event6 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event5 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event1 with output eDP-1 (none by udev)\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.649] associating input device event2 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event8 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event9 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event3 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event7 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event4 with output eDP-1 (none by udev)\n[20:07:48.649] associating input device event0 with output eDP-1 (none by udev)\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.649] associating input device event10 with output eDP-1 (none by udev)\n[20:07:48.649] Output 'eDP-1' enabled with head(s) eDP-1\n[20:07:48.649] Setting output 'HDMI-A-1' to color AUTO format\n[20:07:48.649] Output 'HDMI-A-1' attempts EOTF mode SDR and colorimetry mode default.\n[20:07:48.649] Output 'HDMI-A-1' using color profile: stock sRGB color profile\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.649] Chosen EGL config details: id: 61 rgba: 8 8 8 0 buf: 24 dep: 0 stcl: 0 int: 1-1 type: win val: fix vis_id: XRGB8888 (0x34325258)\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.649] Output HDMI-A-1 (crtc 185) video modes:\n 1920x1080@60.0, preferred, current, 148.5 MHz\n 1920x1080@60.0 16:9, 148.5 MHz\n 1920x1080@59.9 16:9, 148.4 MHz\n 1920x1080@50.0 16:9, 148.5 MHz\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: " 1920x1080@24.0 16:9, 74.2 MHz\n 1280x720@60.0, 74.2 MHz\n 1280x720@60.0 16:9, 74.2 MHz\n 1280x720@59.9 16:9, 74.2 MHz\n 1280x720@50.0 16:9, 74.2 MHz\n 1024x768@75.0, 78.8 MHz\n 1024x768@70.1, 75.0 MHz\n 1024x768@60.0, 65.0 MHz\n 800x600@75.0, 49.5 MHz\n 800x600@72.2, 50.0 MHz\n 800x600@60.3, 40.0 MHz\n 720x576@50.0 16:9, 27.0 MHz\n 720x480@60.0 16:9, 27.0 MHz\n 720x480@59.9 16:9, 27.0 MHz\n 640x480@75.0, 31.5 MHz\n 640x480@60.0 4:3, 25.2 MHz\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: " 640x480@59.9, 25.2 MHz\n 640x480@59.9 4:3, 25.2 MHz\n 720x400@70.1, 28.3 MHz\n[20:07:48.649] Output 'HDMI-A-1' enabled with head(s) HDMI-A-1\n[20:07:48.649] Compositor capabilities:\n arbitrary surface rotation: yes\n screen capture uses y-flip: yes\n cursor planes: yes\n arbitrary resolutions: no\n view mask clipping: yes\n explicit sync: yes\n color operations: yes\n color representation: yes\n presentation clock: CLOCK_MONOTONIC, id 1\n presentation clock resolution: 0.000000001 s\n"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: Directory "/run/user/175" has changed, checking for Wayland socket
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: Found Wayland socket "/run/user/175/wayland-1"
Apr 09 20:07:48 nixos sddm-helper-start-wayland[1496]: "[20:07:48.650] Loading module '/nix/store/jx64dzf75xhd421swdiimlpgb4kv8aml-weston-15.0.0/lib/weston/kiosk-shell.so'\n"
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: High-DPI autoscaling Enabled
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: Reading from "/nix/store/m98ixnk4sjjhzzd40kda1lqibfgz3x6a-desktops/share/wayland-sessions/gnome-wayland.desktop"
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: Reading from "/nix/store/m98ixnk4sjjhzzd40kda1lqibfgz3x6a-desktops/share/wayland-sessions/gnome.desktop"
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: Reading from "/nix/store/m98ixnk4sjjhzzd40kda1lqibfgz3x6a-desktops/share/wayland-sessions/niri.desktop"
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: Reading from "/nix/store/m98ixnk4sjjhzzd40kda1lqibfgz3x6a-desktops/share/wayland-sessions/plasma.desktop"
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: Reading from "/nix/store/m98ixnk4sjjhzzd40kda1lqibfgz3x6a-desktops/share/xsessions/plasmax11.desktop"
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: Loading theme configuration from "/run/current-system/sw/share/sddm/themes/sddm-astronaut-theme/Themes/astronaut.conf"
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: Connected to the daemon.
Apr 09 20:07:48 nixos sddm[1185]: Message received from greeter: Connect
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: Loading file:///run/current-system/sw/share/sddm/themes/sddm-astronaut-theme/Main.qml...
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: file:///run/current-system/sw/share/sddm/themes/sddm-astronaut-theme/Main.qml:10:1: module "QtMultimedia" is not installed
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: file:///run/current-system/sw/share/sddm/themes/sddm-astronaut-theme/Main.qml:10:1: module "QtMultimedia" is not installed
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: Fallback to embedded theme
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/LayoutBox.qml:35:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Apr 09 20:07:48 nixos sddm-greeter-qt6[1542]: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/ComboBox.qml:105:9: QML Image: Cannot open: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/angle-down.png
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/ComboBox.qml:105:9: QML Image: Cannot open: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/angle-down.png
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: qrc:/theme/Main.qml:41:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: Adding view for "eDP-1" QRect(0,0 1920x1080)
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: Loading file:///run/current-system/sw/share/sddm/themes/sddm-astronaut-theme/Main.qml...
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: file:///run/current-system/sw/share/sddm/themes/sddm-astronaut-theme/Main.qml:10:1: module "QtMultimedia" is not installed
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: file:///run/current-system/sw/share/sddm/themes/sddm-astronaut-theme/Main.qml:10:1: module "QtMultimedia" is not installed
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: Fallback to embedded theme
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/LayoutBox.qml:35:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/ComboBox.qml:105:9: QML Image: Cannot open: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/angle-down.png
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/ComboBox.qml:105:9: QML Image: Cannot open: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/angle-down.png
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: qrc:/theme/Main.qml:41:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: Adding view for "HDMI-A-1" QRect(1920,0 1920x1080)
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: Message received from daemon: Capabilities
Apr 09 20:07:49 nixos sddm-greeter-qt6[1542]: Message received from daemon: HostName
Apr 09 20:07:53 nixos sddm-greeter-qt6[1542]: file:///nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/lib/qt-6/qml/SddmComponents/PictureBox.qml:106:13 Parameter "event" is not declared. Injection of parameters into signal handlers is deprecated. Use JavaScript functions with formal parameters instead.
Apr 09 20:07:54 nixos sddm-helper-start-wayland[1496]: "[20:07:54.726] unknown libinput event 900\n"
Apr 09 20:08:06 nixos sddm-greeter-qt6[1542]: Reading from "/nix/store/m98ixnk4sjjhzzd40kda1lqibfgz3x6a-desktops/share/wayland-sessions/plasma.desktop"
Apr 09 20:08:06 nixos sddm[1185]: Message received from greeter: Login
Apr 09 20:08:06 nixos sddm[1185]: Reading from "/nix/store/m98ixnk4sjjhzzd40kda1lqibfgz3x6a-desktops/share/wayland-sessions/plasma.desktop"
Apr 09 20:08:06 nixos sddm[1185]: Session "/nix/store/m98ixnk4sjjhzzd40kda1lqibfgz3x6a-desktops/share/wayland-sessions/plasma.desktop" selected, command: "/nix/store/c6krxl042rj5lhm1wvwkkr8r7wm7196m-plasma-workspace-6.6.3/libexec/plasma-dbus-run-session-if-needed /nix/store/c6krxl042rj5lhm1wvwkkr8r7wm7196m-plasma-workspace-6.6.3/bin/startplasma-wayland" for VT 2
Apr 09 20:08:06 nixos sddm-helper[1959]: [PAM] Starting...
Apr 09 20:08:06 nixos sddm-helper[1959]: [PAM] Authenticating...
Apr 09 20:08:06 nixos sddm-helper[1959]: [PAM] Preparing to converse...
Apr 09 20:08:06 nixos sddm-helper[1959]: [PAM] Conversation with 1 messages
Apr 09 20:08:06 nixos sddm-helper[1959]: pam_kwallet5(sddm:auth): pam_kwallet5: pam_sm_authenticate
Apr 09 20:08:06 nixos sddm-helper[1959]: gkr-pam: unable to locate daemon control file
Apr 09 20:08:06 nixos sddm-helper[1959]: gkr-pam: stashed password to try later in open session
Apr 09 20:08:06 nixos sddm-helper[1959]: [PAM] returning.
Apr 09 20:08:06 nixos sddm[1185]: Authentication for user "biscotty" successful
Apr 09 20:08:06 nixos sddm-greeter-qt6[1542]: Message received from daemon: LoginSucceeded
Apr 09 20:08:06 nixos sddm-helper[1959]: pam_kwallet5(sddm:setcred): pam_kwallet5: pam_sm_setcred
Apr 09 20:08:06 nixos sddm-helper[1959]: pam_unix(sddm:session): session opened for user biscotty(uid=1000) by (uid=0)
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: wayland greeter finished 0 QProcess::NormalExit
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: quitting helper-start-wayland
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: Stopping... "/nix/store/jx64dzf75xhd421swdiimlpgb4kv8aml-weston-15.0.0/bin/weston"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.591] caught signal 15\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.591] event12 - Video Bus: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.592] event11 - Video Bus: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.603] event6 - Power Button: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.604] event5 - Lid Switch: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.604] event1 - Logitech Wireless Keyboard PID:4075: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.604] event2 - Logitech Wireless Mouse: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.615] event8 - DELL0A24:00 06CB:CDD6 Mouse: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.616] event9 - DELL0A24:00 06CB:CDD6 Touchpad: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.643] event3 - Intel HID events: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.644] event7 - Intel HID 5 button array: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.644] event4 - Dell WMI hotkeys: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.644] event0 - AT Translated Set 2 keyboard: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: "[20:08:06.645] event10 - PS/2 Generic Mouse: device removed\n"
Apr 09 20:08:06 nixos sddm-helper-start-wayland[1496]: wayland compositor finished 0 QProcess::NormalExit
Apr 09 20:08:06 nixos sddm-helper[1250]: [PAM] Closing session
Apr 09 20:08:06 nixos sddm-helper[1250]: [PAM] Ended.
Apr 09 20:08:06 nixos sddm[1185]: Auth: sddm-helper exited successfully
Apr 09 20:08:06 nixos sddm[1185]: Greeter stopped. SDDM::Auth::HELPER_SUCCESS
Apr 09 20:08:06 nixos sddm-helper[1959]: pam_kwallet5(sddm:session): pam_kwallet5: pam_sm_open_session
Apr 09 20:08:06 nixos sddm-helper[2030]: pam_kwallet5: final socket path: /run/user/1000/kwallet5.socket
Apr 09 20:08:06 nixos sddm-helper[1959]: gkr-pam: gnome-keyring-daemon started properly and unlocked keyring
Apr 09 20:08:06 nixos sddm-helper[1959]: Starting Wayland user session: "/nix/store/36hzsmxz6yfmn5lr88rikg81cyb8373c-sddm-unwrapped-0.21.0/share/sddm/scripts/wayland-session" "/nix/store/c6krxl042rj5lhm1wvwkkr8r7wm7196m-plasma-workspace-6.6.3/libexec/plasma-dbus-run-session-if-needed /nix/store/c6krxl042rj5lhm1wvwkkr8r7wm7196m-plasma-workspace-6.6.3/bin/startplasma-wayland"
Apr 09 20:08:06 nixos sddm-helper[2038]: Jumping to VT 2
Apr 09 20:08:06 nixos sddm-helper[2038]: VT mode didn't need to be fixed
Apr 09 20:08:06 nixos sddm[1185]: Session started true
Apr 09 20:08:17 nixos (sd-pam)[1359]: pam_unix(systemd-user:session): session closed for user sddm
``