summaryrefslogtreecommitdiffstats
path: root/dotfiles.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dotfiles.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/dotfiles.nix b/dotfiles.nix
deleted file mode 100644
index a235620..0000000
--- a/dotfiles.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- config,
- lib,
- ...
-}: {
- options = {
- dotfiles = {
- mutable = lib.mkEnableOption "mutable dotfiles";
-
- path = lib.mkOption {
- type = lib.types.path;
- apply = toString;
- default = "${config.home.homeDirectory}/.dotfiles/";
- example = "${config.home.homeDirectory}/.dotfiles/astronvim-config";
- description = "Location of the dotfiles working copy";
- };
- };
- };
-}