mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
19 lines
431 B
Nix
19 lines
431 B
Nix
|
{ pkgs, ... }: {
|
||
|
config = {
|
||
|
programs = {
|
||
|
scmpuff = {
|
||
|
enable = true;
|
||
|
enableBashIntegration = false;
|
||
|
enableZshIntegration = false;
|
||
|
};
|
||
|
bash.enable = true;
|
||
|
zsh.enable = true;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileNotRegex home-files/.zshrc '${pkgs.gitAndTools.scmpuff} init -s'
|
||
|
assertFileNotRegex home-files/.bashrc '${pkgs.gitAndTools.scmpuff} init -s'
|
||
|
'';
|
||
|
};
|
||
|
}
|