oizys/hosts/laukaz/default.nix

16 lines
271 B
Nix
Raw Normal View History

2024-02-05 12:29:04 -06:00
{
inputs,
pkgs,
...
}: {
2024-02-05 17:12:11 -06:00
## kodi
users.extraUsers.kodi.isNormalUser = true;
services.cage.user = "kodi";
services.cage.program = "${pkgs.kodi-wayland}/bin/kodi-standalone";
services.cage.enable = true;
##
2024-02-05 12:29:04 -06:00
security.sudo.wheelNeedsPassword = false;
}