1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/tests/modules/programs/glab/aliases.nix
2025-10-26 20:59:05 -05:00

16 lines
320 B
Nix

{ pkgs, ... }:
{
programs.glab = {
enable = true;
aliases.co = "mr checkout";
};
nmt.script = ''
aliasesFile=home-files/.config/glab-cli/aliases.yml
assertFileExists $aliasesFile
assertFileContent $aliasesFile ${pkgs.writeText "glab-aliases.expected" ''
co: mr checkout
''}
'';
}