Make bootstrapping devshell work
This commit is contained in:
parent
1dd0a5e0ca
commit
d93cb11e2f
|
@ -155,7 +155,7 @@
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
args = { inherit pkgs; } // specialArgs system;
|
args = { inherit pkgs; } // specialArgs system;
|
||||||
in
|
in
|
||||||
./devshells args);
|
import ./devshells args);
|
||||||
# }}}
|
# }}}
|
||||||
# {{{ Overlays and modules
|
# {{{ Overlays and modules
|
||||||
# Custom packages and modifications, exported as overlays
|
# Custom packages and modifications, exported as overlays
|
||||||
|
|
|
@ -49,6 +49,9 @@
|
||||||
# }}}
|
# }}}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# I sometimes get errors about `grc` being missing, so I gave up and added it here.
|
||||||
|
home.packages = [ pkgs.grc ];
|
||||||
|
|
||||||
satellite.persistence.at.state.apps.fish.directories = [
|
satellite.persistence.at.state.apps.fish.directories = [
|
||||||
"${config.xdg.dataHome}/fish"
|
"${config.xdg.dataHome}/fish"
|
||||||
"${config.xdg.dataHome}/z" # The z fish plugin
|
"${config.xdg.dataHome}/z" # The z fish plugin
|
||||||
|
|
Loading…
Reference in a new issue