Re-format common
This commit is contained in:
parent
f1099c488e
commit
74d81a4e63
|
@ -87,7 +87,7 @@
|
|||
};
|
||||
|
||||
# later
|
||||
firefox = {};
|
||||
firefox = { };
|
||||
|
||||
fzf = {
|
||||
enable = true;
|
||||
|
@ -96,9 +96,15 @@
|
|||
|
||||
gh = {
|
||||
enable = true;
|
||||
gitProtocol = lib.mkIf (config.home.stateVersion == "21.05") "ssh";
|
||||
settings.git_protocol = lib.mkIf (config.home.stateVersion == "21.11") "ssh";
|
||||
};
|
||||
} // (
|
||||
let
|
||||
protocol = "ssh";
|
||||
in
|
||||
if (config.home.stateVersion == "21.05") then
|
||||
{ gitProtocol = "ssh"; }
|
||||
else
|
||||
{ settings.git_protocol = protocol; }
|
||||
);
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue