mirror of
https://github.com/nix-community/home-manager
synced 2024-11-15 07:39:46 +01:00
28 lines
612 B
Nix
28 lines
612 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.gh = {
|
||
|
enable = true;
|
||
|
aliases = { co = "pr checkout"; };
|
||
|
editor = "vim";
|
||
|
};
|
||
|
|
||
|
nixpkgs.overlays = [
|
||
|
(self: super: {
|
||
|
gitAndTools = super.gitAndTools // {
|
||
|
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","gitProtocol":"https"}''
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|