shell: progress towards a working shell
This commit is contained in:
parent
aec3458fb5
commit
0e597cf4ef
3 changed files with 4 additions and 3 deletions
|
@ -9,10 +9,10 @@
|
|||
aliasesStr =
|
||||
pkgs.lib.concatStringsSep "\n"
|
||||
(pkgs.lib.mapAttrsToList (k: v: "alias ${k}=\"${v}\"") aliases);
|
||||
|
||||
packages = import ./packages.nix pkgs;
|
||||
in (pkgs.symlinkJoin {
|
||||
name = "fish-wrapped";
|
||||
paths = [pkgs.fish pkgs.starship pkgs.fzf];
|
||||
paths = [pkgs.fish] ++ packages;
|
||||
buildInputs = [pkgs.makeWrapper];
|
||||
postBuild = ''
|
||||
wrapProgram $out/bin/fish --set STARSHIP_CONFIG "${toml.generate "starship.toml" starship-config}" \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue