Skip to content

Commit

Permalink
fix(systems): silicon: use pkgs.emacs29
Browse files Browse the repository at this point in the history
  • Loading branch information
gekoke committed Sep 3, 2024
1 parent 52b3bb1 commit 856f39c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions systems/x86_64-linux/silicon/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{ inputs, lib, ... }:
{
inputs,
pkgs,
lib,
...
}:
let
inherit (lib.elementary) enabled;
in
Expand Down Expand Up @@ -36,7 +41,9 @@ in
userEmail = "[email protected]";
};
ssh = enabled;
emacs = enabled;
emacs = enabled // {
package = pkgs.emacs29;
};
direnv = enabled;
spotify = enabled;
};
Expand Down

0 comments on commit 856f39c

Please sign in to comment.