Updated azos-core, nextcloud client, better zoom for qutebrowser
This commit is contained in:
+1
-1
Submodule azos-core updated: 4efb0bdbf6...e42b8dbf8b
@@ -18,5 +18,6 @@
|
|||||||
./reaper.nix
|
./reaper.nix
|
||||||
./snx-rs.nix
|
./snx-rs.nix
|
||||||
./ytdl.nix
|
./ytdl.nix
|
||||||
|
./nextcloud-client.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Executable
+25
@@ -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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -54,3 +54,7 @@ c.fonts.messages.warning = monospace
|
|||||||
c.fonts.prompts = monospace
|
c.fonts.prompts = monospace
|
||||||
c.fonts.statusbar = monospace
|
c.fonts.statusbar = monospace
|
||||||
c.fonts.hints = "bold 13px 'LiberationMono'"
|
c.fonts.hints = "bold 13px 'LiberationMono'"
|
||||||
|
|
||||||
|
#Set highdpi
|
||||||
|
c.qt.highdpi = True
|
||||||
|
c.zoom.default = 70
|
||||||
|
|||||||
Reference in New Issue
Block a user