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