summaryrefslogtreecommitdiff
path: root/modules/devenv/dotfiles.nix
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2023-08-27 17:01:55 +0200
committerquentin@aristote.fr <quentin@aristote.fr>2023-08-27 17:01:55 +0200
commitcb68af5842bead368f0671f81dc90b5e46b6d40b (patch)
tree2b3071882e6504b2bc0fcca39f6d18a2278d3ae7 /modules/devenv/dotfiles.nix
parent511d1466331c7d4ede2c7f025a08a488d43fe027 (diff)
devenv: nix: add formatter to emacs
Diffstat (limited to 'modules/devenv/dotfiles.nix')
-rw-r--r--modules/devenv/dotfiles.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/devenv/dotfiles.nix b/modules/devenv/dotfiles.nix
index 7f11194..ca3108c 100644
--- a/modules/devenv/dotfiles.nix
+++ b/modules/devenv/dotfiles.nix
@@ -14,8 +14,11 @@ in {
gitignore =
lib.mkEnableOption ""
// {
- default = true;
- description = "Whether git should ignore this dotfile, typically if it is generated to contain absolute paths.";
+ description = ''
+ Whether git should ignore this dotfile, typically if it is
+ generated to contain absolute paths and is specific to this
+ project (and may not be ignored system-wide by the user).
+ '';
};
text = lib.mkOption {
type = lib.types.lines;