feat: Update swaync css and settings

This commit is contained in:
uttarayan21
2025-07-18 11:52:53 +05:30
parent 4df3592833
commit 214c6e5d92
3 changed files with 17 additions and 2 deletions

View File

@@ -2,5 +2,7 @@
imports = [ imports = [
# ./syncthing.nix # ./syncthing.nix
# ./command-runner.nix # ./command-runner.nix
./swaync.nix
./swayosd.nix
]; ];
} }

View File

@@ -1,3 +1,16 @@
{...}: { {...}: {
services.swaync.enable = true; services.swaync = {
enable = true;
settings = {
notification-inline-replies = true;
cssPriority = "user";
};
};
xdg.configFile = {
"swaync/style.css".text = ''
.floating-notifications {
background: rgba(0, 0, 0, 0.3);
}
'';
};
} }

View File

@@ -17,7 +17,7 @@
enable = true; enable = true;
package = pkgs.nextcloud31; package = pkgs.nextcloud31;
extraApps = { extraApps = {
inherit (config.services.nextcloud.package.packages.apps) contacts calendar; inherit (config.services.nextcloud.package.packages.apps) contacts calendar bookmarks;
}; };
extraAppsEnable = true; extraAppsEnable = true;
hostName = "cloud.darksailor.dev"; hostName = "cloud.darksailor.dev";