Files
flocon/home-manager/dotfiles.nix
Romain Paquet 3144febfad rename "home" directory to "home-manager"
My dotfiles will be moved to the "home" directory later
2025-06-10 21:32:23 +02:00

15 lines
385 B
Nix

{ 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";
};
};
};
}