17 lines
221 B
Nix
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;
|
|
};
|
|
};
|
|
}
|