2020-05-29 17:54:38 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs = {
|
2020-11-01 18:27:47 +01:00
|
|
|
zsh.enable = true;
|
2020-05-29 17:54:38 +02:00
|
|
|
|
|
|
|
powerline-go = {
|
|
|
|
enable = true;
|
|
|
|
newline = true;
|
|
|
|
modules = [ "nix-shell" ];
|
|
|
|
pathAliases = { "\\~/project/foo" = "prj-foo"; };
|
|
|
|
settings = {
|
|
|
|
ignore-repos = [ "/home/me/project1" "/home/me/project2" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs = {
|
|
|
|
powerline-go = { };
|
|
|
|
zsh = { };
|
|
|
|
};
|
2020-11-01 18:27:47 +01:00
|
|
|
|
2020-05-29 17:54:38 +02:00
|
|
|
nmt.script = ''
|
2020-11-01 18:27:47 +01:00
|
|
|
assertFileExists home-files/.zshrc
|
2021-11-29 06:05:49 +01:00
|
|
|
assertFileContains \
|
|
|
|
home-files/.zshrc \
|
|
|
|
'PS1='
|
2020-05-29 17:54:38 +02:00
|
|
|
assertFileContains \
|
2020-11-01 18:27:47 +01:00
|
|
|
home-files/.zshrc \
|
|
|
|
'/bin/powerline-go -error $? -shell zsh -modules nix-shell -newline -path-aliases \~/project/foo=prj-foo -ignore-repos /home/me/project1,/home/me/project2'
|
2020-05-29 17:54:38 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|