mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
17 lines
289 B
Nix
17 lines
289 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs = {
|
|
scmpuff.enable = true;
|
|
bash.enable = true;
|
|
};
|
|
|
|
test.stubs.scmpuff = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.bashrc
|
|
assertFileContains \
|
|
home-files/.bashrc \
|
|
'eval "$(@scmpuff@/bin/scmpuff init --shell=bash)"'
|
|
'';
|
|
}
|