mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
powerline-go: avoid dependency in tests
This commit is contained in:
parent
e42e147b58
commit
15a2953c81
2 changed files with 9 additions and 2 deletions
|
@ -18,6 +18,9 @@ with lib;
|
|||
};
|
||||
};
|
||||
|
||||
nixpkgs.overlays =
|
||||
[ (self: super: { powerline-go = pkgs.writeScriptBin "dummy-pkg" ""; }) ];
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists home-files/.bashrc
|
||||
assertFileContains \
|
||||
|
|
|
@ -18,8 +18,12 @@ with lib;
|
|||
};
|
||||
};
|
||||
|
||||
nixpkgs.overlays =
|
||||
[ (self: super: { zsh = pkgs.writeScriptBin "dummy-zsh" ""; }) ];
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
powerline-go = pkgs.writeScriptBin "dummy-pkg" "";
|
||||
zsh = pkgs.writeScriptBin "dummy-pkg" "";
|
||||
})
|
||||
];
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists home-files/.zshrc
|
||||
|
|
Loading…
Reference in a new issue