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" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-11-01 18:27:47 +01:00
|
|
|
nixpkgs.overlays =
|
|
|
|
[ (self: super: { zsh = pkgs.writeScriptBin "dummy-zsh" ""; }) ];
|
|
|
|
|
2020-05-29 17:54:38 +02:00
|
|
|
nmt.script = ''
|
2020-11-01 18:27:47 +01:00
|
|
|
assertFileExists home-files/.zshrc
|
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
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|