this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:sparkles: Halloy

+21
+1
home/default.nix
··· 15 15 ./emacs 16 16 ./git 17 17 ./gtk 18 + ./halloy 18 19 ./obsidian 19 20 ./neovim 20 21 ./vicinae
+15
home/halloy/config.toml
··· 1 + # Halloy config. 2 + # 3 + # For a complete list of available options, 4 + # please visit https://halloy.chat/configuration/ 5 + 6 + theme = "Catppuccin Mocha" 7 + 8 + [servers.liberachat] 9 + nickname = "Tulkdan" 10 + nick_password_file = "~/.config/halloy/password" 11 + server = "irc.libera.chat" 12 + channels = ["#halloy", "#janet", "#kotlin", "#Brasil", "#elixir", "#pico.sh"] 13 + 14 + [font] 15 + family = "Monaspace Krypton"
+5
home/halloy/default.nix
··· 1 + { pkgs, ... }: { 2 + home.packages = with pkgs; [ halloy ]; 3 + 4 + home.file.".config/halloy/config.toml".source = ./config.toml; 5 + }