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; }