about summary refs log blame commit diff stats
path: root/hm/default.nix
blob: 3017f8f2edd17cff19bbc2801e700ab3f06aaa3b (plain) (tree)
1
2
3
4
5
6
7
8
9







                     
            


                    
                 
               
         















                                     
                 


                         

                       

                    
              
         
    
{
  pkgs,
  sysLib,
  # extra information
  system,
  # bins
  video_pause,
  yambar_cpu,
  yambar_memory,
  lf_rename,
  strip_js_comments,
  river_init_lesser,
  grades,
  shell_library,
  # external deps
  user_js,
  # modules
  impermanence,
  nixVim,
}: {
  home-manager = {
    useGlobalPkgs = true;
    useUserPackages = true;
    users.soispha = import ./soispha;
    extraSpecialArgs = {
      inherit
        pkgs
        sysLib
        # extra information
        
        system
        # bins
        
        video_pause
        yambar_cpu
        yambar_memory
        lf_rename
        strip_js_comments
        river_init_lesser
        grades
        shell_library
        # external deps
        
        user_js
        # modules
        
        impermanence
        nixVim
        ;
    };
  };
}