12 lines
115 B
Nix
12 lines
115 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
libnotify
|
|
];
|
|
|
|
services.mako.enable = true;
|
|
}
|