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