Update git.nix
This commit is contained in:
parent
6b9d254448
commit
0560427753
1 changed files with 11 additions and 4 deletions
15
git.nix
15
git.nix
|
|
@ -1,11 +1,18 @@
|
||||||
# git.nix
|
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
let
|
||||||
|
home-manager = builtins.fetchTarball {
|
||||||
|
url = "https://github.com/nix-community/home-manager/archive/master.tar.gz";
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
#./flake.nix
|
(import "${home-manager}/nixos")
|
||||||
./hosts/FredOS-Gaming.nix
|
./hosts/FredOS-Gaming.nix
|
||||||
./hosts/FredOS-Macbook.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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue