summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrigory Shipunov2023-01-22 22:22:05 +0100
committerGrigory Shipunov2023-01-22 22:22:05 +0100
commit1a0a186b4179a82d2f56808f6d174bb358264644 (patch)
treec4f90442f15044782ffb6e572bac613cebfc1e84
parent98290d08e16b0edf921b81b5e730623496172a98 (diff)
fzf module not available in 22.11 :(
-rw-r--r--hosts/cirrus/irc.nix12
-rw-r--r--hosts/toaster/default.nix8
-rw-r--r--modules/basic-tools.nix5
3 files changed, 20 insertions, 5 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;
diff --git a/modules/basic-tools.nix b/modules/basic-tools.nix
index 8b07abb..b865d74 100644
--- a/modules/basic-tools.nix
+++ b/modules/basic-tools.nix
@@ -99,11 +99,6 @@
LP_SSH_COLORS=1
'';
};
- # integrate fzf into shell
- programs.fzf = {
- keybindings = true;
- fuzzyCompletion = true;
- };
programs.iftop.enable = true;
programs.mosh.enable = true;