···5757```
5858.
5959├── homes # User home configuration
6060-│ ├── user@shared # Shared dotfiles between user configuration
6161-│ └── user@host # Personal folders for dotfiles
6060+│ ├── <user>@shared # Shared dotfiles between user configuration
6161+│ └── <user>@<host> # Personal folders for dotfiles
6262├── hosts # Host-specific configuration
6363└── modules # macOS and nix-darwin, NixOS, and shared configuration
6464 ├── shared # Shared modules across all platforms
+3
hosts/njord/configuration.nix
···1414 # The platform the configuration will be used on.
1515 nixpkgs.hostPlatform = "aarch64-darwin";
16161717+ # Enable flakes
1818+ nix.settings.experimental-features = [ "nix-command" "flakes" ];
1919+1720 # Use nix as a daemon
1821 services.nix-daemon.enable = true;
1922