Nextcloud

This commit is contained in:
2025-10-17 12:08:07 +02:00
parent f7533d4ffa
commit 0d1d0018ff
4 changed files with 15 additions and 8 deletions

View File

@@ -3,8 +3,6 @@
{
imports = [ ./packages.nix ];
services.gnome-keyring.enable = true;
xdg.mimeApps = {
enable = true;
defaultApplications = {
@@ -52,6 +50,7 @@
};
};
# Theming for ease of use of gui apps
gtk = {
enable = true;
iconTheme = {
@@ -63,21 +62,25 @@
package = pkgs.gnome-themes-extra;
};
};
qt = {
enable = true;
platformTheme.name = "qtct";
style.name = "Kvantum";
style.name = "kvantum";
};
xdg.configFile."Kvantum/kvantum.kvconfig".source =
(pkgs.formats.ini { }).generate "kvantum.kvconfig" {
General.theme = "Catppuccin-Frappe-Rosewater";
General.theme = "KvAdaptaDark";
};
xdg.configFile."qt6ct/qt6ct.conf".source = pkgs.writeTextFile {
name = "qt6ct.conf";
text =
" [Appearance]\n color_scheme_path=${pkgs.qt6ct}/share/qt6ct/colors/airy.conf\n custom_palette=false\n icon_theme=Papirus-Dark\n standard_dialogs=default\n style=kvantum\n";
''
[Appearance]
icon_theme=Papirus-Dark
style=kvantum
standard_dialogs=default
'';
};
programs.starship = {