add(nix): nixified common

This commit is contained in:
Léana 江 2024-01-19 20:05:39 +01:00 committed by Léana 江
parent f97e3f8be8
commit 074e78751a
9 changed files with 168 additions and 93 deletions

View file

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