Compare commits

..

No commits in common. "1a1681699643d43643a1f575081a8c860645d793" and "e8ad16a7e670b2991b09869c0713a54cafbdccb6" have entirely different histories.

3 changed files with 13 additions and 4 deletions

View file

@ -29,7 +29,6 @@
ranger # TUI file manager
trickle # cli network limiter
du-dust # disk usage visualizer
lftp # FTP client
nvd # Differ
nix-output-monitor

View file

@ -7,7 +7,6 @@
inherit (lib) mkIf;
hasPackage = pname: lib.any (p: p ? pname && p.pname == pname) config.home.packages;
hasRipgrep = hasPackage "ripgrep";
hasLftp = hasPackage "lftp";
hasExa = hasPackage "eza";
hasLazygit = config.programs.lazygit.enable;
hasLazydocker = hasPackage "lazydocker";
@ -88,8 +87,6 @@ in {
udmount = "udisksctl mount -b";
udumount = "udisksctl unmount -b";
fftp = mkIf hasLftp "lftp -u ghoscht, sftp://192.168.178.48";
};
functions = {
# Disable greeting

View file

@ -4,4 +4,17 @@
writeEnable = true;
localUsers = true;
};
# networking.firewall.allowedTCPPorts = [21];
# services.vsftpd.extraConfig = ''
# pasv_enable=Yes
# pasv_min_port=51000
# pasv_max_port=51999
# '';
# networking.firewall.allowedTCPPortRanges = [
# {
# from = 51000;
# to = 51999;
# }
# ];
}