mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +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
284 B
Nix
15 lines
284 B
Nix
{ pkgs, ... }: {
|
|
config = {
|
|
programs = {
|
|
scmpuff = {
|
|
enable = true;
|
|
enableZshIntegration = false;
|
|
};
|
|
zsh.enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileNotRegex home-files/.zshrc '${pkgs.gitAndTools.scmpuff} init -s'
|
|
'';
|
|
};
|
|
}
|