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

@@ -26,7 +26,7 @@
# Hide the windows disk in the file explorer # Hide the windows disk in the file explorer
services.udev.extraRules = '' services.udev.extraRules = ''
# Ignore internal NVMe Windows partition # Ignore internal NVMe Windows partition
SUBSYSTEM=="block", ENV{ID_PART_ENTRY_UUID}=="A09C8D5E9C8D2FB8", ENV{UDISKS_IGNORE}="1" SUBSYSTEM=="block", ENV{ID_FS_UUID}=="A09C8D5E9C8D2FB8", ENV{UDISKS_IGNORE}="1"
''; '';
# TODO: Make all your working systems go to ext4 on the full disk for ease of use and storage # TODO: Make all your working systems go to ext4 on the full disk for ease of use and storage

View File

@@ -13,6 +13,8 @@
}; };
security.polkit.enable = true; security.polkit.enable = true;
security.pam.services.login.enableGnomeKeyring = true;
services.gnome.gnome-keyring.enable = true;
# Nix fun # Nix fun
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;

View File

@@ -3,8 +3,6 @@
{ {
imports = [ ./packages.nix ]; imports = [ ./packages.nix ];
services.gnome-keyring.enable = true;
xdg.mimeApps = { xdg.mimeApps = {
enable = true; enable = true;
defaultApplications = { defaultApplications = {
@@ -52,6 +50,7 @@
}; };
}; };
# Theming for ease of use of gui apps
gtk = { gtk = {
enable = true; enable = true;
iconTheme = { iconTheme = {
@@ -63,21 +62,25 @@
package = pkgs.gnome-themes-extra; package = pkgs.gnome-themes-extra;
}; };
}; };
qt = { qt = {
enable = true; enable = true;
platformTheme.name = "qtct"; platformTheme.name = "qtct";
style.name = "Kvantum"; style.name = "kvantum";
}; };
xdg.configFile."Kvantum/kvantum.kvconfig".source = xdg.configFile."Kvantum/kvantum.kvconfig".source =
(pkgs.formats.ini { }).generate "kvantum.kvconfig" { (pkgs.formats.ini { }).generate "kvantum.kvconfig" {
General.theme = "Catppuccin-Frappe-Rosewater"; General.theme = "KvAdaptaDark";
}; };
xdg.configFile."qt6ct/qt6ct.conf".source = pkgs.writeTextFile { xdg.configFile."qt6ct/qt6ct.conf".source = pkgs.writeTextFile {
name = "qt6ct.conf"; name = "qt6ct.conf";
text = 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 = { programs.starship = {

View File

@@ -22,6 +22,7 @@
unstable.signal-desktop unstable.signal-desktop
qbittorrent qbittorrent
ausweisapp ausweisapp
nextcloud-client
# --- Media & Desktop Tools --- # --- Media & Desktop Tools ---
simple-scan simple-scan
@@ -52,6 +53,7 @@
# --- Essentials & Navigation --- # --- Essentials & Navigation ---
ripgrep ripgrep
fd fd
gcr # Keyring
fzf fzf
eza eza
bat bat