Files
nix-config/homes/aarch64-linux/root@pi5/default.nix
mjallen18 d981fb20c2 fmt ++
2025-12-23 21:04:21 -06:00

19 lines
245 B
Nix

{
lib,
namespace,
...
}:
let
inherit (lib.${namespace}) disabled;
in
{
home.username = "root";
services = {
nextcloud-client = lib.mkForce disabled;
kdeconnect = {
enable = false;
indicator = false;
};
};
}