rename "home" directory to "home-manager"

My dotfiles will be moved to the "home" directory later
This commit is contained in:
2025-06-10 21:32:23 +02:00
parent ee2b9fa9e0
commit 3144febfad
16 changed files with 13 additions and 13 deletions

14
home-manager/dotfiles.nix Normal file
View File

@@ -0,0 +1,14 @@
{ config, lib, ... }:
{
options = {
dotfiles = {
path = lib.mkOption {
type = lib.types.path;
apply = toString;
default = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/rep/dotfiles";
example = "${config.home.homeDirectory}/.dotfiles";
description = "Location of the dotfiles working copy";
};
};
};
}