mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-22 23:11:57 +00:00
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.
22 lines
298 B
Nix
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
|
|
];
|
|
}
|