Initial commit

This commit is contained in:
Oliver Davies 2025-07-22 20:55:21 +01:00
commit a5cc5ad811
13 changed files with 287 additions and 0 deletions

8
modules/git.nix Normal file
View file

@ -0,0 +1,8 @@
{
flake.modules.nixos.pc = { pkgs, ... }:
{
environment.systemPackages = with pkgs; [
git
];
};
}