mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2026-05-12 16:11:42 +01:00
25 lines
294 B
Nix
25 lines
294 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
unstablePkgs,
|
|
...
|
|
}: {
|
|
home.packages =
|
|
(with pkgs; [
|
|
alejandra
|
|
git-extras
|
|
git-credential-manager
|
|
meld
|
|
unzip
|
|
])
|
|
++ (with unstablePkgs; [
|
|
devenv
|
|
lazygit
|
|
nixd
|
|
nushell
|
|
]);
|
|
}
|