aboutsummaryrefslogblamecommitdiff
path: root/profiles/home-manager.nix
blob: fa6b60c30cff4472b618abc2db681f1ecb567ee9 (plain) (tree)
1
2
3
4
5
6
7
8
9

       
            


           


     



                                   
               
            



                        
    


                                            

                                   

    
{
  self,
  adminUser,
  hostName,
  inputs,
  config,
  ...
}:
{
  home-manager.extraSpecialArgs = {
    inherit
      self
      hostName
      adminUser
      inputs
      ;
  }
  // {
    mainConfig = config;
  };

  home-manager.sharedModules = [
    inputs.agenix.homeManagerModules.default
    ../home/modules/userinfo.nix
    ../home/modules/onepassword.nix
  ];
}