Created
August 19, 2025 19:36
-
-
Save tylerjl/36f436a2182b5f724c0011f57bb7368b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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