mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
11 lines
247 B
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;
|
|
}
|