mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
20 lines
400 B
Nix
20 lines
400 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [
|
|
({ ... }: { config.programs.zsh.history.ignorePatterns = [ "echo *" ]; })
|
|
({ ... }: { config.programs.zsh.history.ignorePatterns = [ "rm *" ]; })
|
|
];
|
|
|
|
config = {
|
|
programs.zsh.enable = true;
|
|
|
|
test.stubs.zsh = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContains home-files/.zshrc "HISTORY_IGNORE='(echo *|rm *)'"
|
|
'';
|
|
};
|
|
}
|