feat: add lftp

This commit is contained in:
2025-08-07 14:17:29 -07:00
parent 1344c4ac9e
commit d89abf9ded
2 changed files with 16 additions and 10 deletions

View File

@@ -45,6 +45,7 @@
grim grim
slurp slurp
swappy swappy
lftp
]; ];
programs.hyprland = { programs.hyprland = {
enable = true; enable = true;
@@ -88,6 +89,12 @@
xdg.configFile = { xdg.configFile = {
"hypr/hyprlock.conf".source = ../../custom/hyprlock/hyprlock.conf; "hypr/hyprlock.conf".source = ../../custom/hyprlock/hyprlock.conf;
}; };
home.file = {
".lftprc".text = ''
alias l ls
set default-protocol sftp
'';
};
services.dunst = { services.dunst = {
enable = true; enable = true;
configFile = ../../custom/dunst/dunstrc; configFile = ../../custom/dunst/dunstrc;

View File

@@ -17,8 +17,7 @@ in
autosuggestion.enable = true; autosuggestion.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
history.size = 1000; history.size = 1000;
envExtra = envExtra = ''
''
export PATH="$PATH:$HOME/.rokit/bin" export PATH="$PATH:$HOME/.rokit/bin"
export GOPATH="$HOME/go" export GOPATH="$HOME/go"
export GOBIN="$HOME/go/bin" export GOBIN="$HOME/go/bin"