mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
d1d950841d
Also add an activation script block for allowing gh version 2.40.0 and later to perform account migration.
26 lines
537 B
Nix
26 lines
537 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
|
|
version: '1'
|
|
''
|
|
}
|
|
'';
|
|
};
|
|
}
|