Create git.nix

This commit is contained in:
ediblerope 2025-12-02 21:39:23 +00:00 committed by GitHub
parent 929efa6dcf
commit 959d79ab58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
git.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
imports = [
./common.nix
./hosts/${config.networking.hostName}.nix
];
}