1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00
home-manager/tests/modules/programs/gh/config-file.nix
2021-10-08 23:29:25 +02:00

26 lines
514 B
Nix

{ config, lib, pkgs, ... }:
{
config = {
programs.gh = {
enable = true;
settings.aliases = { co = "pr checkout"; };
settings.editor = "vim";
};
test.stubs.gh = { };
nmt.script = ''
assertFileExists home-files/.config/gh/config.yml
assertFileContent home-files/.config/gh/config.yml ${
builtins.toFile "config-file.yml" ''
aliases:
co: pr checkout
editor: vim
git_protocol: https
''
}
'';
};
}