18 lines
508 B
Nix
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
|
|
};
|
|
};
|
|
}
|