Configure catgirl
This commit is contained in:
parent
2c012e36c9
commit
ff97c8886b
3 changed files with 21 additions and 1 deletions
home/features/cli
14
home/features/cli/catgirl.nix
Normal file
14
home/features/cli/catgirl.nix
Normal 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";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue