diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/cirrus/irc.nix | 12 | ||||
| -rw-r--r-- | hosts/toaster/default.nix | 8 |
2 files changed, 20 insertions, 0 deletions
diff --git a/hosts/cirrus/irc.nix b/hosts/cirrus/irc.nix new file mode 100644 index 0000000..e5cb87f --- /dev/null +++ b/hosts/cirrus/irc.nix @@ -0,0 +1,12 @@ +{ pkgs, config, ... }: { + containers.irc = { + autoStart = true; + privateNetwork = true; + config = { config, pkgs, ... }: { + services.soju = { + enable = true; + enableMessageLogging = true; + }; + }; + }; +} diff --git a/hosts/toaster/default.nix b/hosts/toaster/default.nix index f67d3ff..458672a 100644 --- a/hosts/toaster/default.nix +++ b/hosts/toaster/default.nix @@ -13,6 +13,14 @@ audacity yt-dlp ]; + # integrate fzf into shell, >23.05 only + # to be moved to basic tools at some point + programs = { + fzf = { + keybindings = true; + fuzzyCompletion = true; + }; + }; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; |
