Add zed and deps and little fixs

This commit is contained in:
Laurent Gueret
2026-01-25 15:39:59 +01:00
parent 5f4f699077
commit 03a8e36d4b
3 changed files with 15 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
zed-editor
# Languages servers
nil
nixd
];
}
+1
View File
@@ -7,6 +7,7 @@
./configurations/gnome.nix
./configurations/firefox.nix
./configurations/ghostty.nix
./configurations/zed.nix
];
nixpkgs = {
+2 -2
View File
@@ -1,5 +1,5 @@
{ inputs, ... }:
{ ... }:
{
home-manager.users.alistreaza = import ./home.nix;
home-manager.users.alistreaza = import ../home.nix;
}