This commit is contained in:
Bryan Ramos 2023-06-06 15:12:51 -04:00
parent 730d251731
commit 53b69ec2ef

View file

@ -1,8 +1,8 @@
{ pkgs, config, ... }:
{ pkgs, ... }:
{
programs.home-manager.enable = true;
imports = [ (import ./modules/default.nix) ];
imports = [ (import ./modules/default.nix { inherit pkgs; }) ];
home.stateVersion = "22.11";
home.username = "bryan";
@ -23,4 +23,11 @@
security.enable = true;
corn.enable = true;
};
homeManagerConfig = {
homeManagerPath = "${pkgs.home-manager}/bin/home-manager";
extraConfig = ''
users.bryan = import ./homeConfig/home.nix { inherit config; };
'';
};
}