nix-config/modules/home.nix

12 lines
241 B
Nix
Raw Normal View History

# Simplify setting home options
{ config, lib, ... }:
let
actualPath = [ "home-manager" "users" config.my.user.name "my" "home" ];
aliasPath = [ "my" "home" ];
in
{
imports = [
(lib.mkAliasOptionModule aliasPath actualPath)
];
}