home/zed: use unstable package

This commit is contained in:
Oystein Kristoffer Tveit 2024-09-04 10:30:00 +02:00
parent c533a7df56
commit 2b81c752f0
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 3 additions and 2 deletions

View File

@ -188,6 +188,7 @@
useGlobalPkgs = true; useGlobalPkgs = true;
extraSpecialArgs = { extraSpecialArgs = {
inherit inputs; inherit inputs;
inherit unstable-pkgs;
inherit (self) extendedLib; inherit (self) extendedLib;
inherit (config) machineVars; inherit (config) machineVars;
secrets = secrets.outputs.settings; secrets = secrets.outputs.settings;

View File

@ -1,6 +1,6 @@
{ config, pkgs, lib, ... }: { config, pkgs, unstable-pkgs, lib, ... }:
{ {
home.packages = with pkgs; [ zed-editor ]; home.packages = with unstable-pkgs; [ zed-editor ];
xdg.configFile."zed/settings.json".source = let xdg.configFile."zed/settings.json".source = let
format = pkgs.formats.json { }; format = pkgs.formats.json { };