Skip to content

Commit 13152a2

Browse files
committed
chore: up
1 parent 71d8385 commit 13152a2

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

nix/modules/home-manager.nix

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ config, dotfilesDir, lib, pkgs, pkgsUnstable, ... }: {
1+
{ config, dotfilesDir, lib, pkgs, ... }: {
22
home.packages = with pkgs; [
33
amber
44
asciinema
@@ -9,6 +9,7 @@
99
delta
1010
direnv
1111
dockutil
12+
elixir
1213
erlang
1314
eza
1415
fd
@@ -23,10 +24,7 @@
2324
rustup
2425
starship
2526
zoxide
26-
] ++ (with pkgsUnstable; [
27-
# TODO: Using latest version ([email protected]), replace once stable
28-
elixir
29-
]);
27+
];
3028
home.file = {
3129
".ignore".source = ../files/ignore;
3230
".ssh/tom.pub".source = ../files/tom.pub;

nix/modules/shell.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
];
4545
shellAbbrs = {
4646
a = "ambr";
47+
c = "claude";
4748
d = "docker";
4849
de = "delta";
4950
dc = "docker compose";

nvim/lua/plugins.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ return {
524524
-- FIXME: Remove after biome@2 is released
525525
local pkg = mr.get_package("biome")
526526
if not pkg:is_installed() then
527-
pkg:install({ version = "2.0.0-beta.1" })
527+
pkg:install({ version = "2.0.0-beta.5" })
528528
end
529529

530530
mr:on("package:install:success", function()

0 commit comments

Comments
 (0)