Files
nixfiles/home/apps/starship.nix
2025-12-17 21:43:32 +05:00

17 lines
221 B
Nix

{
lib, config, pkgs, ...
}: let
cfg = config.starship;
in {
options.starship = {};
config = {
home.packages = [
pkgs.starship
];
home.file = {
".config/starship.toml".source = ./starship.toml;
};
};
}