blob: 0a58589ae0f76d5ae6aa9ab247697c6b6b592ae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ 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; }";
};
}
|