nix-config/hosts/dionysos/configuration.nix
2024-10-12 20:27:46 +02:00

14 lines
196 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
weechat
tmux
];
services.weechat.enable = true;
programs.tmux = {
enable = true;
clock24 = true;
};
}