nix: put builtin in scope when needed

This commit is contained in:
Léana 江 2024-04-06 13:50:33 +02:00 committed by Léana 江
parent d7d55059ce
commit 8271aea4ba
9 changed files with 38 additions and 34 deletions

View file

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