Files
My_NixOS_Config/home-manager/core/packages.nix
Cian Hughes 51f65717a1 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.
2025-04-14 10:58:46 +01:00

22 lines
298 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: {
home.packages = [
pkgs.alejandra
pkgs.git-extras
pkgs.git-credential-manager
pkgs.meld
pkgs.unzip
unstablePkgs.devenv
unstablePkgs.lazygit
unstablePkgs.nixd
unstablePkgs.nushell
];
}