mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
3327cbe1f9
* gh: fix protocol setting * gh: fix test
22 lines
537 B
Nix
22 lines
537 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
programs.gh = {
|
|
enable = true;
|
|
aliases = { co = "pr checkout"; };
|
|
editor = "vim";
|
|
};
|
|
|
|
nixpkgs.overlays =
|
|
[ (self: super: { gh = pkgs.writeScriptBin "dummy-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"}''
|
|
}
|
|
'';
|
|
};
|
|
}
|