14 lines
179 B
Nix
14 lines
179 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options = {
|
|
homeManager = lib.mkOption {
|
|
type = lib.types.set;
|
|
};
|
|
};
|
|
|
|
config = {
|
|
home-manager.users.dakedres = config.homeManager;
|
|
};
|
|
}
|