From 6e3cdcec40fa4952baa9c51f3cd076dd57d5db55 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Tue, 2 Dec 2025 22:23:36 +0000 Subject: [PATCH] Update git.nix --- git.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/git.nix b/git.nix index a1684ea..8e63887 100644 --- a/git.nix +++ b/git.nix @@ -1,8 +1,11 @@ +# git.nix { config, pkgs, lib, ... }: { imports = [ ./common.nix - ] ++ lib.optional (builtins.pathExists ./hosts/${config.networking.hostName}.nix) - ./hosts/${config.networking.hostName}.nix; + ./hosts/FredOS-Gaming.nix + ./hosts/laptop.nix + # Add all your hosts here + ]; }