Compare commits
No commits in common. "6f936dc3f881d54ebf7b9da3b5fbf3be5d9ecf25" and "97d6bf380aa4c094e0e97d437fb6760376e5da92" have entirely different histories.
6f936dc3f8
...
97d6bf380a
|
@ -3,7 +3,6 @@
|
||||||
inputs,
|
inputs,
|
||||||
config,
|
config,
|
||||||
system,
|
system,
|
||||||
lib,
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
@ -49,11 +48,6 @@
|
||||||
init.defaultBranch = "mainline";
|
init.defaultBranch = "mainline";
|
||||||
diff.tool = "vimdiff";
|
diff.tool = "vimdiff";
|
||||||
merge.tool = "vimdiff";
|
merge.tool = "vimdiff";
|
||||||
# provide `git mergetool -t nixfmt`
|
|
||||||
mergetool.nixfmt = {
|
|
||||||
cmd = "${lib.getExe pkgs.nixfmt-rfc-style} --mergetool \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"";
|
|
||||||
trustExitCode = true;
|
|
||||||
};
|
|
||||||
core.excludesfile = toString (
|
core.excludesfile = toString (
|
||||||
pkgs.writeText ".gitignore_global" ''
|
pkgs.writeText ".gitignore_global" ''
|
||||||
# Direnv stuff #
|
# Direnv stuff #
|
||||||
|
|
|
@ -94,25 +94,6 @@ in
|
||||||
+ import ./scripts/ssh-loop-fc.nix { inherit pkgs lib; }
|
+ import ./scripts/ssh-loop-fc.nix { inherit pkgs lib; }
|
||||||
);
|
);
|
||||||
|
|
||||||
launchd.agents.hydra_proxy = {
|
|
||||||
enable = true;
|
|
||||||
config = {
|
|
||||||
ProgramArguments = [
|
|
||||||
"${lib.getExe pkgs.autossh}"
|
|
||||||
"-M"
|
|
||||||
"0"
|
|
||||||
"-D"
|
|
||||||
"1080"
|
|
||||||
"-oServerAliveInterval=60"
|
|
||||||
"-oControlMaster=no"
|
|
||||||
"-N"
|
|
||||||
"vpn-whq.services.fcio.net"
|
|
||||||
];
|
|
||||||
# TODO: consider socket activation instead
|
|
||||||
KeepAlive = true;
|
|
||||||
ThrottleInterval = 60;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "1password-cli" ];
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "1password-cli" ];
|
||||||
|
|
||||||
home.stateVersion = "22.05";
|
home.stateVersion = "22.05";
|
||||||
|
|
Loading…
Reference in a new issue