Switched package lists from with syntax to explicit

Appranently, the use of `with` for this is discouraged as it can cause
some kinds of compilation/linking issues. Switching to explicit
declaration is a bit more verbose, but probably makes organising into
modules easier in the long run anyway.
This commit is contained in:
2025-04-14 10:58:46 +01:00
parent c487bf5807
commit 51f65717a1
6 changed files with 303 additions and 320 deletions

View File

@@ -7,18 +7,15 @@
unstablePkgs,
...
}: {
home.packages =
(with pkgs; [
alejandra
git-extras
git-credential-manager
meld
unzip
])
++ (with unstablePkgs; [
devenv
lazygit
nixd
nushell
]);
home.packages = [
pkgs.alejandra
pkgs.git-extras
pkgs.git-credential-manager
pkgs.meld
pkgs.unzip
unstablePkgs.devenv
unstablePkgs.lazygit
unstablePkgs.nixd
unstablePkgs.nushell
];
}