nix-config/hosts/dionysos/configuration.nix

14 lines
196 B
Nix
Raw Normal View History

2024-10-12 20:27:46 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
weechat
tmux
];
services.weechat.enable = true;
programs.tmux = {
enable = true;
clock24 = true;
};
}