Skip to content

Commit 8c1311b

Browse files
Update flake.lock (#410)
* flake.lock: Update Flake lock file updates: • Updated input 'darwin': 'github:lnl7/nix-darwin/0d7874e' (2026-02-04) → 'github:lnl7/nix-darwin/6a7fdcd' (2026-02-19) • Updated input 'determinate': 'https://api.flakehub.com/f/pinned/DeterminateSystems/determinate/3.15.2/019bde7d-0725-73ef-9705-498c50ef6e00/source.tar.gz' (2026-01-21) → 'https://api.flakehub.com/f/pinned/DeterminateSystems/determinate/3.16.0/019c58b5-64dc-77f9-b913-8738b7d338cc/source.tar.gz' (2026-02-13) • Updated input 'determinate/determinate-nixd-aarch64-darwin': 'https://install.determinate.systems/determinate-nixd/tag/v3.15.2/macOS' → 'https://install.determinate.systems/determinate-nixd/tag/v3.16.0/macOS' • Updated input 'determinate/determinate-nixd-aarch64-linux': 'https://install.determinate.systems/determinate-nixd/tag/v3.15.2/aarch64-linux' → 'https://install.determinate.systems/determinate-nixd/tag/v3.16.0/aarch64-linux' • Updated input 'determinate/determinate-nixd-x86_64-linux': 'https://install.determinate.systems/determinate-nixd/tag/v3.15.2/x86_64-linux' → 'https://install.determinate.systems/determinate-nixd/tag/v3.16.0/x86_64-linux' • Updated input 'determinate/nix': 'https://api.flakehub.com/f/pinned/DeterminateSystems/nix-src/3.15.2/019bde75-b4ee-74b2-a812-28dc2ee83d58/source.tar.gz' (2026-01-21) → 'https://api.flakehub.com/f/pinned/DeterminateSystems/nix-src/3.16.0/019c589d-45e9-7337-9ff0-a8d78fecf63f/source.tar.gz' (2026-02-13) • Updated input 'determinate/nixpkgs': 'https://api.flakehub.com/f/pinned/DeterminateSystems/nixpkgs-weekly/0.1.930106%2Brev-bde09022887110deb780067364a0818e89258968/019bd9ed-5f0b-7074-afb0-8bb5e13a7598/source.tar.gz' (2026-01-19) → 'https://api.flakehub.com/f/pinned/DeterminateSystems/nixpkgs-weekly/0.1.942631%2Brev-fef9403a3e4d31b0a23f0bacebbec52c248fbb51/019c4621-ce4f-799f-82f6-b3b29f099b09/source.tar.gz' (2026-02-08) • Updated input 'git-hooks': 'github:cachix/git-hooks.nix/a8ca480' (2026-02-01) → 'github:cachix/git-hooks.nix/5eaaedd' (2026-02-10) • Updated input 'home-manager': 'github:nix-community/home-manager/471e6a0' (2026-02-05) → 'github:nix-community/home-manager/c6ed3ea' (2026-02-21) • Updated input 'nh': 'github:nix-community/nh/8c5e29c' (2026-02-01) → 'github:nix-community/nh/503409a' (2026-02-18) • Updated input 'nix-index-database': 'github:Mic92/nix-index-database/2684bb8' (2026-02-05) → 'github:Mic92/nix-index-database/8f590b8' (2026-02-22) • Updated input 'nixos-hardware': 'github:nixos/nixos-hardware/a351494' (2026-01-25) → 'github:nixos/nixos-hardware/740a223' (2026-02-18) • Updated input 'nixos-unstable': 'github:nixos/nixpkgs/00c21e4' (2026-02-04) → 'github:nixos/nixpkgs/0182a36' (2026-02-17) • Updated input 'stable': 'github:nixos/nixpkgs/e576e3c' (2026-02-03) → 'github:nixos/nixpkgs/c217913' (2026-02-20) • Updated input 'unstable': 'github:nixos/nixpkgs/aa290c9' (2026-02-04) → 'github:nixos/nixpkgs/d1c15b7' (2026-02-16) * fix library path, cpath, homebrew.brewPrefix -> homebrew.prefix --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent ff911ae commit 8c1311b

File tree

4 files changed

+83
-56
lines changed

4 files changed

+83
-56
lines changed

flake.lock

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

modules/darwin/default.nix

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,16 @@
4444

4545
hm.home.sessionSearchVariables = {
4646
LIBRARY_PATH = [
47-
"${lib.removeSuffix "/bin" config.homebrew.brewPrefix}/lib"
48-
"$(xcrun --show-sdk-path)"
47+
"${config.homebrew.prefix}/lib"
48+
"$SDKROOT/usr/lib"
49+
"/usr/local/lib"
50+
"/usr/lib"
51+
];
52+
CPATH = [
53+
"${config.homebrew.prefix}/include"
54+
"$SDKROOT/usr/include"
55+
"/usr/local/include"
56+
"/usr/lib"
4957
];
5058
};
5159

modules/home-manager/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@
3232
# You can update Home Manager without changing this value. See
3333
# the Home Manager release notes for a list of state version
3434
# changes in each release.
35-
stateVersion = "25.05";
35+
stateVersion = "26.05";
3636

3737
# define package definitions for current user environment
3838
packages =
3939
with pkgs;
4040
[
4141
age
4242
alejandra
43-
argocd
43+
# argocd
4444
asciidoctor
4545
ast-grep
4646
attic

modules/home-manager/shell.nix

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ let
1010
wtInstall = shell: ''
1111
if command -v wt >/dev/null 2>&1; then eval "$(command wt config shell init ${shell})"; fi
1212
'';
13+
14+
slinkyInstall = shell: ''
15+
if command -v slinky >/dev/null 2>&1; then eval "$(command slinky config hook ${shell})"; fi
16+
'';
1317
in
1418
{
1519
home = {
@@ -83,6 +87,7 @@ in
8387
initContent = ''
8488
unset RPS1
8589
${wtInstall "zsh"}
90+
${slinkyInstall "zsh"}
8691
'';
8792
oh-my-zsh = {
8893
enable = true;
@@ -95,11 +100,24 @@ in
95100
"argocd"
96101
"brew"
97102
"git"
103+
"git-lfs"
104+
"golang"
105+
"jfrog"
106+
"k9s"
98107
"kitty"
108+
"kubectl"
109+
"kubectx"
99110
"mise"
100-
"poetry"
111+
"mosh"
112+
"rclone"
113+
"ssh"
101114
"starship"
102115
"sudo"
116+
"tailscale"
117+
"task"
118+
"terraform"
119+
"ufw"
120+
"uv"
103121
"zoxide"
104122

105123
# order matters for these ones, probably
@@ -118,6 +136,7 @@ in
118136
initExtra = ''
119137
eval "$(mise activate bash)"
120138
${wtInstall "bash"}
139+
${slinkyInstall "bash"}
121140
'';
122141
};
123142
}

0 commit comments

Comments
 (0)