summaryrefslogtreecommitdiff
path: root/modules/home-manager/dotfiles.nix
blob: 6d28f39a4be9d34932c15b286bd969558f037f51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, ... }:

{
  options.personal.home.dotfiles = lib.mkOption {
    type = with lib.types; attrsOf path;
    default = {};
    description = ''
      Paths to dotfiles.
    '';
    example =
      lib.literalExample "{ \"init.el\" = ./dotfiles/init.el; }";
  };
}