@jaspermayone.com's dotfiles
0
fork

Configure Feed

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

move nix.enable=false to dippet only (Determinate installer)

+4 -4
+2 -2
darwin/default.nix
··· 2 2 { config, pkgs, lib, inputs, hostname, ... }: 3 3 4 4 { 5 - # Disable nix-darwin's Nix management (using Determinate Nix installer) 6 - nix.enable = false; 5 + # Nix configuration 6 + nix.settings.experimental-features = [ "nix-command" "flakes" ]; 7 7 8 8 # Fix GID mismatch for nixbld group (new installs use 350, old used 30000) 9 9 ids.gids.nixbld = 350;
+2 -2
hosts/dippet/default.nix
··· 2 2 { config, pkgs, lib, inputs, hostname, ... }: 3 3 4 4 { 5 - # Host-specific overrides go here 6 - # Most configuration is inherited from darwin/default.nix and home/default.nix 5 + # Disable nix-darwin's Nix management (using Determinate Nix installer) 6 + nix.enable = false; 7 7 8 8 # Agenix identity path (use user SSH key on macOS) 9 9 age.identityPaths = [ "/Users/jsp/.ssh/id_ed25519" ];