mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
33 lines
621 B
Nix
33 lines
621 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs = {
|
||
|
zsh.enable = true;
|
||
|
|
||
|
pls = {
|
||
|
enable = true;
|
||
|
enableAliases = true;
|
||
|
package = config.lib.test.mkStubPackage { outPath = "@pls@"; };
|
||
|
};
|
||
|
};
|
||
|
|
||
|
test.stubs = {
|
||
|
pls = { };
|
||
|
zsh = { };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.zshrc
|
||
|
assertFileContains \
|
||
|
home-files/.zshrc \
|
||
|
"alias ls='@pls@/bin/pls'"
|
||
|
assertFileContains \
|
||
|
home-files/.zshrc \
|
||
|
"alias ll='@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'"
|
||
|
'';
|
||
|
};
|
||
|
}
|