mirror of
https://github.com/nix-community/home-manager
synced 2025-01-12 12:09:49 +01:00
23 lines
726 B
Nix
23 lines
726 B
Nix
|
{ ... }: {
|
||
|
programs = {
|
||
|
pay-respects.enable = true;
|
||
|
pay-respects.enableBashIntegration = false;
|
||
|
pay-respects.enableFishIntegration = false;
|
||
|
pay-respects.enableZshIntegration = false;
|
||
|
pay-respects.enableNushellIntegration = false;
|
||
|
bash.enable = true;
|
||
|
zsh.enable = true;
|
||
|
fish.enable = true;
|
||
|
nushell.enable = true;
|
||
|
};
|
||
|
|
||
|
test.stubs.pay-respects = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileNotRegex home-files/.bashrc '@pay-respects@/bin/dummy'
|
||
|
assertFileNotRegex home-files/.zshrc '@pay-respects@/bin/dummy'
|
||
|
assertFileNotRegex home-files/.config/fish/config.fish '@pay-respects@/bin/dummy'
|
||
|
assertFileNotRegex home-files/.config/nushell/config.nu '@pay-respects@/bin/dummy'
|
||
|
'';
|
||
|
}
|