mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-01-29 03:17:14 +08:00
12 lines
210 B
Nix
12 lines
210 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
settings = {
|
|
border-size = 4;
|
|
border-radius = 8;
|
|
};
|
|
};
|
|
stylix.targets.mako.enable = true;
|
|
home.packages = [ pkgs.libnotify ];
|
|
}
|