mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
Nextcloud
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
# Hide the windows disk in the file explorer
|
||||
services.udev.extraRules = ''
|
||||
# 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
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
};
|
||||
|
||||
security.polkit.enable = true;
|
||||
security.pam.services.login.enableGnomeKeyring = true;
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
|
||||
# Nix fun
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
unstable.signal-desktop
|
||||
qbittorrent
|
||||
ausweisapp
|
||||
nextcloud-client
|
||||
|
||||
# --- Media & Desktop Tools ---
|
||||
simple-scan
|
||||
@@ -52,6 +53,7 @@
|
||||
# --- Essentials & Navigation ---
|
||||
ripgrep
|
||||
fd
|
||||
gcr # Keyring
|
||||
fzf
|
||||
eza
|
||||
bat
|
||||
|
||||
Reference in New Issue
Block a user