Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(njord): forgot to add nix experimental command and flakes

cosmeak dfb484f5 7ed79c9e

+5 -2
+2 -2
README.md
··· 57 57 ``` 58 58 . 59 59 ├── homes # User home configuration 60 - │ ├── user@shared # Shared dotfiles between user configuration 61 - │ └── user@host # Personal folders for dotfiles 60 + │ ├── <user>@shared # Shared dotfiles between user configuration 61 + │ └── <user>@<host> # Personal folders for dotfiles 62 62 ├── hosts # Host-specific configuration 63 63 └── modules # macOS and nix-darwin, NixOS, and shared configuration 64 64 ├── shared # Shared modules across all platforms
+3
hosts/njord/configuration.nix
··· 14 14 # The platform the configuration will be used on. 15 15 nixpkgs.hostPlatform = "aarch64-darwin"; 16 16 17 + # Enable flakes 18 + nix.settings.experimental-features = [ "nix-command" "flakes" ]; 19 + 17 20 # Use nix as a daemon 18 21 services.nix-daemon.enable = true; 19 22