fzf module not available in 22.11 :(
This commit is contained in:
parent
98290d08e1
commit
1a0a186b41
3 changed files with 20 additions and 5 deletions
12
hosts/cirrus/irc.nix
Normal file
12
hosts/cirrus/irc.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, config, ... }: {
|
||||
containers.irc = {
|
||||
autoStart = true;
|
||||
privateNetwork = true;
|
||||
config = { config, pkgs, ... }: {
|
||||
services.soju = {
|
||||
enable = true;
|
||||
enableMessageLogging = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue