24 lines
253 B
Nix
24 lines
253 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
flakes,
|
|
...
|
|
}:
|
|
with lib; {
|
|
imports = [
|
|
];
|
|
|
|
local = {
|
|
baseline.enable = true;
|
|
|
|
services = {
|
|
zsh.prompt = "%B<%~> \${vcs_info_msg_0_}%b";
|
|
};
|
|
};
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
];
|
|
};
|
|
}
|