mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2026-02-03 15:22:30 +00:00
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:
@@ -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
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user