fix package imports

This commit is contained in:
Chris Kruining 2025-03-19 07:48:50 +01:00
parent 65e0b4932e
commit 635b33eb97
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
21 changed files with 60 additions and 51 deletions

View file

@ -9,11 +9,12 @@ in {
in {enable = mkEnableOption "zed";};
config = mkIf cfg.enable {
user.packages = with pkgs; [
home-manager.users.${user} = {
home.packages = with pkgs; [
zed-editor
];
home-manager.users.${user}.programs.zed-editor = {
programs.zed-editor = {
enable = true;
extraPackages = with pkgs; [ nixd nil alejandra ];
@ -57,5 +58,6 @@ in {
};
};
};
};
};
}