Skip to content

Commit 6580085

Browse files
committed
nixos: darwin update to 25.05
1 parent 7adb3d7 commit 6580085

File tree

6 files changed

+33
-20
lines changed

6 files changed

+33
-20
lines changed

dev-shell.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@
1313
shfmt
1414
yamlfmt
1515
];
16+
shellHook = ''
17+
pre-commit install
18+
'';
1619
};
1720
}

flake.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

git/.config/git/ignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ dmypy.json
104104
.zsh_sessions
105105

106106
# nix
107-
shell.nix
108107
result
109108
*.qcow2
110109
*.qcow3

nixos/hosts/mondo/configuration.nix

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1-
{ lib, system, ... }:
21
{
2+
lib,
3+
system,
4+
user,
5+
...
6+
}:
7+
{
8+
39
nixpkgs.hostPlatform = lib.mkDefault system;
410
system = {
5-
stateVersion = 5;
11+
primaryUser = "${user}";
12+
stateVersion = 6;
613
keyboard = {
714
enableKeyMapping = true;
815
remapCapsLockToEscape = true;
@@ -25,6 +32,4 @@
2532
};
2633
};
2734
};
28-
29-
services.nix-daemon.enable = true;
3035
}

nixos/hosts/mondo/homebrew.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
{
33
homebrew = {
44
enable = true;
5+
onActivation = {
6+
autoUpdate = true;
7+
cleanup = "uninstall";
8+
upgrade = true;
9+
};
510
casks = [
611
"copyq"
712
"hammerspoon"

nixos/hosts/mondo/packages.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ in
55
{
66
environment.systemPackages = with pkgs-unstable; [
77
heroku
8+
nh
89
];
910
}

0 commit comments

Comments
 (0)