mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
26fa84ebce
scmpuff is a command line tool that allows you to work quicker with Git by substituting numeric shortcuts for files
15 lines
291 B
Nix
15 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'
|
|
'';
|
|
};
|
|
}
|