move programs in modules such that base.nix il a basic configuration
All checks were successful
/ build-all (push) Successful in 1m37s

This commit is contained in:
ant 2025-09-27 11:32:20 +02:00
parent d43ece8ac4
commit 05bbe7463b
8 changed files with 162 additions and 174 deletions

View file

@ -189,4 +189,21 @@
setlocal ${config.xdg.userDirs.download} set info size:time
'';
};
programs.fish = {
shellAliases = {
f = "lfcd";
};
plugins = [
{
name = "fish-lf-icons";
src = pkgs.fetchFromGitHub {
owner = "joshmedeski";
repo = "fish-lf-icons";
rev = "d1c47b2088e0ffd95766b61d2455514274865b4f";
sha256 = "sha256-6po/PYvq4t0K8Jq5/t5hXPLn80iyl3Ymx2Whme/20kc=";
};
}
];
};
}