first dionysos test

This commit is contained in:
chloe 2024-10-12 20:27:46 +02:00
parent 469b0391b7
commit ecce73e727
3 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
weechat
tmux
];
services.weechat.enable = true;
programs.tmux = {
enable = true;
clock24 = true;
};
}