my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

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

chore: update to darwin v6 and remove docs

isabel 5ead108a 939ba835

+7 -1
+1 -1
modules/base/nix/system.nix
··· 12 12 system = { 13 13 # this is the NixOS version that the configuration was generated with 14 14 # this should be change to the version of the NixOS release that the configuration was generated with 15 - stateVersion = mkDefault (ldTernary pkgs "23.05" 5); 15 + stateVersion = mkDefault (ldTernary pkgs "23.05" 6); 16 16 17 17 # we can get the git rev that we are working on and set that to the configurationRevision 18 18 # this *might* be useful for debugging
+4
modules/darwin/config-path.nix
··· 1 + { 2 + # do not set the path to the darwin configuration 3 + environment.darwinConfig = null; 4 + }
+2
modules/darwin/default.nix
··· 7 7 ./services # services exclusive to nix-darwin 8 8 9 9 ./activation.nix # run when we start the system 10 + ./config-path.nix # set the path to the darwin configuration 11 + ./documentation.nix # turn off docs 10 12 ./nix.nix # nix settings that can only be applied to nix-darwin 11 13 ./remote-modules.nix # modules that are not in this repo, and don't have a nice place to be imported in 12 14 ];