Update git.nix

This commit is contained in:
ediblerope 2025-12-04 12:12:36 +00:00 committed by GitHub
parent 6b9d254448
commit 0560427753
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

15
git.nix
View file

@ -1,11 +1,18 @@
# git.nix
{ config, pkgs, lib, ... }:
let
home-manager = builtins.fetchTarball {
url = "https://github.com/nix-community/home-manager/archive/master.tar.gz";
};
in
{
imports = [
#./flake.nix
(import "${home-manager}/nixos")
./hosts/FredOS-Gaming.nix
./hosts/FredOS-Macbook.nix
# Add all your hosts here
./common.nix
];
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.fred = import ./home.nix;
}