1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 18:08:32 +02:00
home-manager/tests/modules/programs/gh/config-file.nix

26 lines
514 B
Nix
Raw Normal View History

2020-10-15 22:25:47 +02:00
{ config, lib, pkgs, ... }:
{
config = {
programs.gh = {
enable = true;
2021-10-08 23:29:25 +02:00
settings.aliases = { co = "pr checkout"; };
settings.editor = "vim";
2020-10-15 22:25:47 +02:00
};
test.stubs.gh = { };
2020-10-15 22:25:47 +02:00
nmt.script = ''
assertFileExists home-files/.config/gh/config.yml
assertFileContent home-files/.config/gh/config.yml ${
builtins.toFile "config-file.yml" ''
2021-10-08 23:29:25 +02:00
aliases:
co: pr checkout
editor: vim
git_protocol: https
''
2020-10-15 22:25:47 +02:00
}
'';
};
}