diff options
Diffstat (limited to 'modules/home-manager/dotfiles.nix')
| -rw-r--r-- | modules/home-manager/dotfiles.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/home-manager/dotfiles.nix b/modules/home-manager/dotfiles.nix index 6d28f39..0a58589 100644 --- a/modules/home-manager/dotfiles.nix +++ b/modules/home-manager/dotfiles.nix @@ -3,11 +3,10 @@ { options.personal.home.dotfiles = lib.mkOption { type = with lib.types; attrsOf path; - default = {}; + default = { }; description = '' Paths to dotfiles. ''; - example = - lib.literalExample "{ \"init.el\" = ./dotfiles/init.el; }"; + example = lib.literalExample "{ \"init.el\" = ./dotfiles/init.el; }"; }; } |
