dotfiles/nixos/modules/home-manager.nix

11 lines
247 B
Nix

inputs:
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, rlib }@rpkgs:
hm-path:
{ config, pkgs, ... }:
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.main = rlib.callModule rpkgs hm-path;
}