Revert "nix: put builtin in scope when needed"

I don't know where I got this anti-pattern. It makes the LSP unable to
figure out which bindings are unbound
This commit is contained in:
Léana 江 2024-04-14 18:09:33 +02:00 committed by Léana 江
parent 082ebfb772
commit 74689b460e
9 changed files with 34 additions and 38 deletions

View file

@ -1,8 +1,7 @@
with builtins;
{
programs.starship = {
enable = true;
enableFishIntegration = true;
settings = fromTOML (readFile ./starship.toml);
settings = fromTOML (builtins.readFile ./starship.toml);
};
}