documentation update

This commit is contained in:
2025-12-17 19:39:02 -05:00
parent fb6ac75f3c
commit ab3b4a017d
11 changed files with 272 additions and 208 deletions

View File

@@ -175,14 +175,13 @@ nix-desktop = {
Users and systems can reference external Git repositories for configuration:
```nix
# In users.nix - External dotfiles
myuser = {
description = "My Name";
home = builtins.fetchGit {
url = "https://github.com/username/dotfiles";
rev = "abc123...";
};
# In users.nix - External dotfiles with user configuration
myuser.external = builtins.fetchGit {
url = "https://github.com/username/dotfiles";
rev = "abc123...";
};
# The external user.nix file contains both ugaif.users.myuser options
# AND home-manager configuration
# In inventory.nix - External system config
nix-lxc = {