mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
15 lines
271 B
Nix
15 lines
271 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
|
|
## kodi
|
|
users.extraUsers.kodi.isNormalUser = true;
|
|
services.cage.user = "kodi";
|
|
services.cage.program = "${pkgs.kodi-wayland}/bin/kodi-standalone";
|
|
services.cage.enable = true;
|
|
##
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
}
|