git by default
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Jermeiah S 2025-06-19 22:04:42 -04:00
parent 2c84665e96
commit 2841978224
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
{ flake, ... }:
{ flake, pkgs, ... }:
{
imports =
with builtins;
@ -12,4 +12,7 @@
services.tailscale = {
enable = true;
};
environment.systemPackages = with pkgs; [
git
];
}