1
Fork 0

Configure catgirl

This commit is contained in:
Matei Adriel 2024-02-01 00:04:04 +01:00
parent 2c012e36c9
commit ff97c8886b
No known key found for this signature in database
3 changed files with 21 additions and 1 deletions
home/features/cli

View file

@ -0,0 +1,14 @@
# Catgirl is a terminal based irc client
{ config, pkgs, ... }:
let
mkCatgirlNetwork = network: ''
host = ${network}.irc.moonythm.dev
save = ${network}
port = 6697
'';
in
{
satellite.persistence.at.state.apps.catgirl.directories = [ "${config.xdg.dataHome}/catgirl" ];
home.packages = [ pkgs.catgirl ];
xdg.configFile."catgirl/tilde".text = mkCatgirlNetwork "tilde";
}