heavily inspired by https://tangled.org/quasigod.xyz/nixconfig
0

Configure Feed

Select the types of activity you want to include in your feed.

kdeconnect work snow

Herschel Pawar (Jun 18, 2026, 1:20 PM +0530) f7bc44dd bc47ab38

+18 -1
+18 -1
modules/aspects/gui/niri/default.nix
··· 15 15 ]; 16 16 17 17 nixos = 18 - { config, pkgs, ... }: 18 + { 19 + config, 20 + pkgs, 21 + lib, 22 + ... 23 + }: 19 24 { 20 25 imports = [ inputs.niri.nixosModules.niri ]; 21 26 22 27 programs.niri.enable = true; 23 28 programs.niri.package = pkgs.niri; 29 + 30 + systemd.user.services.niri-wayland-env = { 31 + description = "Propagate WAYLAND_DISPLAY to systemd user services"; 32 + after = [ "niri.service" ]; 33 + before = [ "graphical-session.target" ]; 34 + wantedBy = [ "graphical-session.target" ]; 35 + serviceConfig = { 36 + Type = "oneshot"; 37 + RemainAfterExit = true; 38 + ExecStart = "${lib.getExe' pkgs.systemd "systemctl"} --user set-environment WAYLAND_DISPLAY=wayland-1"; 39 + }; 40 + }; 24 41 25 42 home-manager.extraSpecialArgs = { 26 43 stylixImage = config.stylix.image;