ref(nix): learned stuff

This commit is contained in:
Léana 江 2024-03-07 13:44:07 +01:00 committed by Léana 江
parent e2f4c9121e
commit ee13650e17
3 changed files with 11 additions and 16 deletions

View file

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