diff options
author | Martin Fischer <martin@push-f.com> | 2025-02-24 20:18:14 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-02-24 20:18:14 +0100 |
commit | f530d6ad41747af5f8bb05b337b278cddbac76d9 (patch) | |
tree | 2cca1d67a163e0d02b092ff51f6cee3d31e4214f /nixos/profiles | |
parent | 3ccacbcf32c30677db8a2729c9e553431fd3b732 (diff) |
tweak(workstation): use Zed from unstable
Diffstat (limited to 'nixos/profiles')
-rw-r--r-- | nixos/profiles/workstation/dev.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nixos/profiles/workstation/dev.nix b/nixos/profiles/workstation/dev.nix index 11d706a..13eba67 100644 --- a/nixos/profiles/workstation/dev.nix +++ b/nixos/profiles/workstation/dev.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, pkgs-unstable, ... }: { environment.systemPackages = with pkgs; [ @@ -19,7 +19,7 @@ gcc # rustc fails if cc linker isn't found chromium - zed-editor + pkgs-unstable.zed-editor vscodium # I'm installing extensions via my install-imperative script. platformio @@ -30,4 +30,3 @@ dockerSocket.enable = true; }; } - |