10 lines
136 B
Nix
10 lines
136 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [weechat];
|
|
services = {
|
|
weechat = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|