From 212069cf2d3b65d8327a7a5d290c80553007da68 Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Sun, 18 Jan 2026 18:12:11 -0800 Subject: [PATCH 1/2] Configure docker --- systems/x86_64-linux/carbon/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) 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. From a5d42d3a0cbe6d2a65bb8092062559b92526b608 Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Sun, 18 Jan 2026 18:12:51 -0800 Subject: [PATCH 2/2] Configure github cli --- modules/home/tools/git/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 = {