From 03a8e36d4b6302c403582fe321b061be0ab550a5 Mon Sep 17 00:00:00 2001 From: Laurent Gueret Date: Sun, 25 Jan 2026 15:39:59 +0100 Subject: [PATCH] Add zed and deps and little fixs --- home/configurations/zed.nix | 12 ++++++++++++ home/home.nix | 1 + home/parts/users.nix | 4 ++-- 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 home/configurations/zed.nix diff --git a/home/configurations/zed.nix b/home/configurations/zed.nix new file mode 100644 index 0000000..15598ad --- /dev/null +++ b/home/configurations/zed.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + + zed-editor + + # Languages servers + nil + nixd + + ]; +} diff --git a/home/home.nix b/home/home.nix index b9e7800..7db4057 100755 --- a/home/home.nix +++ b/home/home.nix @@ -7,6 +7,7 @@ ./configurations/gnome.nix ./configurations/firefox.nix ./configurations/ghostty.nix + ./configurations/zed.nix ]; nixpkgs = { diff --git a/home/parts/users.nix b/home/parts/users.nix index 9f75a47..7721995 100644 --- a/home/parts/users.nix +++ b/home/parts/users.nix @@ -1,5 +1,5 @@ -{ inputs, ... }: +{ ... }: { - home-manager.users.alistreaza = import ./home.nix; + home-manager.users.alistreaza = import ../home.nix; }