mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
17 lines
320 B
Nix
17 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
|
|
''}
|
|
'';
|
|
}
|