1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00

scmpuff: use pkgs.scmpuff

This commit is contained in:
Robert Helgesson 2021-05-18 00:47:40 +02:00
parent adbabcd0a0
commit f9e45390de
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
6 changed files with 8 additions and 8 deletions

View File

@ -11,8 +11,8 @@ in {
package = mkOption {
type = types.package;
default = pkgs.gitAndTools.scmpuff;
defaultText = literalExample "pkgs.gitAndTools.scmpuff";
default = pkgs.scmpuff;
defaultText = literalExample "pkgs.scmpuff";
description = "Package providing the <command>scmpuff</command> tool.";
};

View File

@ -9,7 +9,7 @@
assertFileExists home-files/.bashrc
assertFileContains \
home-files/.bashrc \
'eval "$(${pkgs.gitAndTools.scmpuff}/bin/scmpuff init -s)"'
'eval "$(${pkgs.scmpuff}/bin/scmpuff init -s)"'
'';
};
}

View File

@ -9,7 +9,7 @@
};
nmt.script = ''
assertFileNotRegex home-files/.bashrc '${pkgs.gitAndTools.scmpuff}/bin/scmpuff'
assertFileNotRegex home-files/.bashrc '${pkgs.scmpuff}/bin/scmpuff'
'';
};
}

View File

@ -11,8 +11,8 @@
};
nmt.script = ''
assertFileNotRegex home-files/.zshrc '${pkgs.gitAndTools.scmpuff} init -s'
assertFileNotRegex home-files/.bashrc '${pkgs.gitAndTools.scmpuff} init -s'
assertFileNotRegex home-files/.zshrc '${pkgs.scmpuff} init -s'
assertFileNotRegex home-files/.bashrc '${pkgs.scmpuff} init -s'
'';
};
}

View File

@ -9,7 +9,7 @@
};
nmt.script = ''
assertFileNotRegex home-files/.zshrc '${pkgs.gitAndTools.scmpuff} init -s'
assertFileNotRegex home-files/.zshrc '${pkgs.scmpuff} init -s'
'';
};
}

View File

@ -9,7 +9,7 @@
assertFileExists home-files/.zshrc
assertFileContains \
home-files/.zshrc \
'eval "$(${pkgs.gitAndTools.scmpuff}/bin/scmpuff init -s)"'
'eval "$(${pkgs.scmpuff}/bin/scmpuff init -s)"'
'';
};
}