Skip to content

Commit 5481ab7

Browse files
committed
chore: update to nix 25.11
And required config changes for the release. - programs.zsh.dotDir no more relative - xdg.enable = true; - nodePackages.jsonlint no more maintained
1 parent b99293d commit 5481ab7

File tree

5 files changed

+29
-28
lines changed

5 files changed

+29
-28
lines changed

flake.lock

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

flake.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
description = "refnode's Nix configurations";
33

44
inputs = {
5-
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
5+
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
66
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
7-
nix-darwin.url = "github:lnl7/nix-darwin/nix-darwin-25.05";
7+
nix-darwin.url = "github:lnl7/nix-darwin/nix-darwin-25.11";
88
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
9-
home-manager.url = "github:nix-community/home-manager/release-25.05";
9+
home-manager.url = "github:nix-community/home-manager/release-25.11";
1010
home-manager.inputs.nixpkgs.follows = "nixpkgs";
1111
pre-commit-hooks.url = "github:cachix/git-hooks.nix";
1212
pre-commit-hooks.inputs.nixpkgs.follows = "nixpkgs";

users/refnode/common/core/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@
1818
home.homeDirectory = pkgs.lib.mkForce "/Users/refnode";
1919

2020
programs.home-manager.enable = true;
21+
22+
xdg.enable = true;
2123
}

users/refnode/common/core/zsh/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
programs.zsh = {
33
enable = true;
44
defaultKeymap = "viins";
5-
dotDir = ".config/zsh";
5+
dotDir = "${config.xdg.configHome}/zsh";
66

77
autocd = true;
88

users/refnode/default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
jq
2222
yq
2323
yamllint
24-
nodePackages.jsonlint
2524
mas
2625
pdfgrep
2726
jasper

0 commit comments

Comments
 (0)