summaryrefslogtreecommitdiffstats
path: root/dotfiles
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2026-04-25 21:34:06 -0400
committerSkullheadx <admonty1@protonmail.com>2026-04-25 21:34:06 -0400
commitf351ef00f77e5ea4d082a7eff86d7845dad7d9e0 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /dotfiles
parentbluetooth (diff)
downloadnixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.tar.gz
nixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.tar.bz2
nixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.zip
remove all
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";
- };
- };
- };
-}