Updated azos-core, nextcloud client, better zoom for qutebrowser

This commit is contained in:
2026-05-04 14:52:08 +03:00
parent 29a351845b
commit ea550d2e8c
4 changed files with 31 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.nextcloud-client.enable;
in {
options.azos.nextcloud-client.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
nextcloud-client
];
services.nextcloud-client = {
enable = true;
startInBackground = false;
};
};
}