diff --git a/flake.lock b/flake.lock index 7c8db1a..42944c6 100644 --- a/flake.lock +++ b/flake.lock @@ -136,16 +136,16 @@ ] }, "locked": { - "lastModified": 1739553546, - "narHash": "sha256-L4ou3xfOr17EAe836djRoQ7auVkYOREMtiQa82wVGqU=", + "lastModified": 1748373722, + "narHash": "sha256-qi6aDGP2W6GyAUNEhg+slQWEpUiJ8LNIrQkmxHpzadI=", "owner": "lnl7", "repo": "nix-darwin", - "rev": "353846417f985e74fdc060555f17939e4472ea2c", + "rev": "75b99daa12b1fffd646d6c3cf13b06f1fa5cef63", "type": "github" }, "original": { "owner": "lnl7", - "ref": "nix-darwin-24.11", + "ref": "nix-darwin-25.05", "repo": "nix-darwin", "type": "github" } diff --git a/hosts/worf/configuration.nix b/hosts/worf/configuration.nix index 1d35eeb..ee86ec8 100644 --- a/hosts/worf/configuration.nix +++ b/hosts/worf/configuration.nix @@ -8,6 +8,8 @@ nixpkgs.config.allowUnfree = true; nix = { + enable = true; + # gc = { # automatic = true; # options = "--delete-older-than 2d"; @@ -74,6 +76,8 @@ }; }; + ids.gids.nixbld = 30000; + system.primaryUser = "felixalb"; users.users.felixalb = { home = "/Users/felixalb"; shell = pkgs.zsh; @@ -84,16 +88,11 @@ fonts.packages = with pkgs; [ - noto-fonts - font-awesome fira-code + font-awesome hack-font - - (nerdfonts.override { - fonts = [ - "Hack" - ]; - }) + nerd-fonts.hack + noto-fonts ]; system.defaults = { @@ -139,9 +138,7 @@ remapCapsLockToControl = true; }; - # Auto upgrade nix package and the daemon service. - services.nix-daemon.enable = true; - nix.package = pkgs.nix; + # nix.package = pkgs.nix; system.stateVersion = 5; }