Skip to content

Instantly share code, notes, and snippets.

@tylerjl
Created August 19, 2025 19:36
Show Gist options
  • Save tylerjl/36f436a2182b5f724c0011f57bb7368b to your computer and use it in GitHub Desktop.
Save tylerjl/36f436a2182b5f724c0011f57bb7368b to your computer and use it in GitHub Desktop.
{
systemd.user = {
services.niriusd = {
Unit = {
Description = "nirius utilities";
After = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.nirius}/bin/niriusd";
};
};
sockets.niriusd = {
Unit.Description = "nirius utilities";
Socket = {
ListenStream = "%t/nirius-wayland-1.sock";
SocketMode = "0755";
};
Install.WantedBy = [ "sockets.target" ];
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment