dotfiles/modules/homeModule.nix
2024-01-25 00:55:35 -07:00

14 lines
179 B
Nix

{ lib, ... }:
{
options = {
homeManager = lib.mkOption {
type = lib.types.set;
};
};
config = {
home-manager.users.dakedres = config.homeManager;
};
}