Files
nixos/Droidnix/generated/modules/traveldroid/system/swaync.nix
T
2026-04-21 22:20:17 +02:00

18 lines
508 B
Nix

# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ config, pkgs, lib, ... }:
{
environment.systemPackages = [ pkgs.swaynotificationcenter ];
home-manager.users.${config.mainUser} = {
services.swaync = {
enable = true;
# Neither settings nor style are managed by Nix.
# Swaync will read both from ~/.config/swaync/ directly:
# ~/.config/swaync/config.json
# ~/.config/swaync/style.css
};
};
}