summaryrefslogtreecommitdiff
path: root/modules/home-manager/dotfiles.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/dotfiles.nix')
-rw-r--r--modules/home-manager/dotfiles.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/home-manager/dotfiles.nix b/modules/home-manager/dotfiles.nix
new file mode 100644
index 0000000..6d28f39
--- /dev/null
+++ b/modules/home-manager/dotfiles.nix
@@ -0,0 +1,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; }";
+ };
+}