diff --git a/modules/home/tools/git/default.nix b/modules/home/tools/git/default.nix index 8c545c6..0898fba 100644 --- a/modules/home/tools/git/default.nix +++ b/modules/home/tools/git/default.nix @@ -45,6 +45,18 @@ in }; }; + programs.gh = { + enable = true; + gitCredentialHelper = { + enable = true; + hosts = [ + "https://github.com" + "https://gist.github.com" + "https://github.gatech.edu" + ]; + }; + }; + programs.git = { enable = true; settings = { diff --git a/systems/x86_64-linux/carbon/default.nix b/systems/x86_64-linux/carbon/default.nix index 248e9db..7e03843 100644 --- a/systems/x86_64-linux/carbon/default.nix +++ b/systems/x86_64-linux/carbon/default.nix @@ -33,6 +33,17 @@ ]; }; + virtualisation = { + docker = { + enable = true; + storageDriver = "overlay2"; + rootless = { + enable = true; + setSocketVariable = true; + }; + }; + }; + networking = { hostName = "carbon"; networkmanager.enable = true; # Enables wireless support via wpa_supplicant.