Skip to content

Commit a15af13

Browse files
committed
chore: 24.05 -> 24.11
1 parent aca783c commit a15af13

File tree

6 files changed

+160
-94
lines changed

6 files changed

+160
-94
lines changed

flake.lock

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

flake.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33

44
inputs = {
55
# Nixpkgs
6-
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05-small";
6+
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11-small";
77

88
# Nixpkgs (next)
9-
nixpkgs-next.url = "github:nixos/nixpkgs/nixos-24.11-small";
9+
# nixpkgs-next.url = "github:nixos/nixpkgs/nixos-25.05-small";
1010

1111
# Nixpkgs (unstable)
1212
nixpkgs-unstable.url = "github:nixos/nixpkgs/master";
1313

1414
# Home manager
15-
home-manager.url = "github:nix-community/home-manager/release-24.05";
15+
home-manager.url = "github:nix-community/home-manager/release-24.11";
1616

1717
# NixOS WSL
1818
nixos-wsl.url = "github:nix-community/nixos-wsl/2405.5.4";
1919

2020
# nixvim
21-
nixvim.url = "github:nix-community/nixvim/nixos-24.05";
21+
nixvim.url = "github:nix-community/nixvim/nixos-24.11";
2222
};
2323

2424
outputs =

home-manager/common/nixvim/default.nix

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,22 @@
2525
defaultEditor = true;
2626
plugins.which-key = {
2727
enable = true;
28-
registrations = {
29-
"<leader>c" = {
30-
name = "code";
31-
};
32-
"<leader>f" = {
33-
name = "file / find";
34-
};
35-
"<leader>s" = {
36-
name = "search";
37-
};
28+
settings = {
29+
specs = [
30+
{
31+
__unkeyed = "<leader>c";
32+
name = "code";
33+
}
34+
{
35+
__unkeyed = "<leader>f";
36+
name = "file / find";
37+
38+
}
39+
{
40+
__unkeyed = "<leader>s";
41+
name = "search";
42+
}
43+
];
3844
};
3945
};
4046
extraPlugins = with pkgs.vimPlugins; [ vim-startuptime ];

home-manager/common/nixvim/flash.nix

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
programs.nixvim = {
33
plugins.flash = {
44
enable = true;
5-
jump = {
6-
nohlsearch = true;
7-
};
8-
label = {
9-
uppercase = false;
10-
rainbow = {
11-
enabled = true;
5+
settings = {
6+
jump = {
7+
nohlsearch = true;
8+
};
9+
label = {
10+
uppercase = false;
11+
rainbow = {
12+
enabled = true;
13+
};
1214
};
1315
};
1416
};

0 commit comments

Comments
 (0)