From ae156d7ea3273a647ae46877af8c93f59f8c5fff Mon Sep 17 00:00:00 2001 From: Fern Garden Date: Mon, 4 Aug 2025 21:51:30 +0800 Subject: [PATCH] Add more packages --- suites/desktop/home.nix | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/suites/desktop/home.nix b/suites/desktop/home.nix index 47baf06..aadbbd2 100644 --- a/suites/desktop/home.nix +++ b/suites/desktop/home.nix @@ -13,6 +13,7 @@ with lib; { # XDG portals. xdg.portal = { enable = true; + config.common.default = "*"; extraPortals = [ pkgs.xdg-desktop-portal-gnome pkgs.xdg-desktop-portal-gtk @@ -339,13 +340,28 @@ with lib; { # Notifications services.mako.enable = true; + # Day/night gamma adjustment. + services.wlsunset = { + sunset = "18:00"; + sunrise = "06:00"; + }; + + # Clipboard manager. + services.cliphist.enable = true; + # Install some software. programs.firefox = { enable = true; - profiles.default = {}; + profiles.default = { + extensions.force = true; + settings."identity.sync.tokenserver.uri" = "https://fxsync.fern.garden/1.0/sync/1.5"; + }; }; - stylix.targets.firefox.profileNames = ["default"]; + stylix.targets.firefox = { + profileNames = ["default"]; + colorTheme.enable = true; + }; programs.kitty = { enable = true; @@ -357,15 +373,18 @@ with lib; { home.packages = with pkgs; [ caligula celluloid + decibels deploy-rs - discord feishin + file-roller fluffychat fusee-nano gimp3 glabels-qt + hyprpicker jellyfin-media-player libreoffice + loupe nautilus nerd-fonts.symbols-only nextcloud-client @@ -373,14 +392,21 @@ with lib; { noto-fonts-cjk-sans noto-fonts-cjk-serif ns-usbloader + nwg-clipman obsidian + papers playerctl prismlauncher protonmail-desktop rockbox-utility + seahorse signal-desktop + simple-scan smile via + wdisplays + webcord + wl-clipboard yubioath-flutter ]; }