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