Dotfiles managed with Nix
1{
2 # Host entries are keyed by the machine's real short hostname.
3 # - macOS: `scutil --get LocalHostName`
4 # - Linux: `hostname -s`
5 #
6 # Each host usually only needs:
7 # - `system`: Nix platform string such as `aarch64-darwin` or `x86_64-linux`
8 # Get it on the target machine with:
9 # `nix eval --impure --raw --expr builtins.currentSystem`
10 # - `username`: local login user that Home Manager should manage
11 #
12 # Optional overrides:
13 # - `homeDirectory`: defaults to `/Users/<username>` on macOS and `/home/<username>` on Linux
14 # - `flakeDirectory`: defaults to `<homeDirectory>/.dot`
15 # - `deployDirectory`: defaults to `<homeDirectory>/.dot-deploy`
16 MacBook-Air-de-Daniel = {
17 system = "aarch64-darwin";
18 username = "vieitesprefapp";
19 };
20}