worf: Update to nixos 25.05

This commit is contained in:
Felix Albrigtsen 2025-06-03 22:15:16 +02:00
parent de319def43
commit e545add397
2 changed files with 12 additions and 15 deletions

8
flake.lock generated
View File

@ -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"
}

View File

@ -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;
}