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

@ -11,7 +11,7 @@ in
};
config = mkIf config.modules.${user}.develop.dotnet.enable {
user.packages = attrValues {
home-manager.users.${user}.home.packages = attrValues {
inherit (pkgs) dotnet-sdk_8;
};
};

View file

@ -12,7 +12,7 @@ in
config = mkMerge [
(mkIf config.modules.${user}.develop.js.enable {
user.packages = with pkgs; [
home-manager.users.${user}.home.packages = with pkgs; [
bun
nodejs
nodePackages_latest.typescript-language-server

View file

@ -15,7 +15,7 @@ in
# (mkIf config.modules.${user}.develop.rust.enable {
# # nixpkgs.overlays = [inputs.rust.overlays.default];
#
# user.packages = attrValues {
# home-manager.users.${user}.home.packages = attrValues {
# # rust-package = pkgs.rust-bin.stable.latest.default;
# # inherit (pkgs) rust-analyzer rust-script;
# };
@ -27,7 +27,7 @@ in
# })
#
# (mkIf config.module.${user}s.develop.xdg.enable {
# home = {
# home-manager.users.${user}.home = {
# sessionVariables.CARGO_HOME = "$XDG_DATA_HOME/cargo";
# sessionPath = ["$CARGO_HOME/bin"];
# };