mirror of
https://github.com/nix-community/home-manager.git
synced 2025-04-15 00:36:34 +00:00
22 lines
427 B
Nix
22 lines
427 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.glab = {
|
||
|
enable = true;
|
||
|
gitCredentialHelper = {
|
||
|
enable = true;
|
||
|
hosts = [ "https://gitlab.com" "https://gitlab.example.com" ];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
programs.git.enable = true;
|
||
|
|
||
|
test.stubs.glab = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/git/config
|
||
|
assertFileContent home-files/.config/git/config \
|
||
|
${./credential-helper.git.conf}
|
||
|
'';
|
||
|
}
|