1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/pls/bash.nix
2022-09-30 12:53:39 -04:00

30 lines
591 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs = {
bash.enable = true;
pls = {
enable = true;
enableAliases = true;
package = config.lib.test.mkStubPackage { outPath = "@pls@"; };
};
};
test.stubs.pls = { };
nmt.script = ''
assertFileExists home-files/.bashrc
assertFileContains \
home-files/.bashrc \
"alias ls='@pls@/bin/pls'"
assertFileContains \
home-files/.bashrc \
"alias ll='@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'"
'';
};
}