mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-23 23:41:56 +00:00
30 lines
408 B
Nix
30 lines
408 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
unstablePkgs,
|
|
...
|
|
}: let
|
|
monaspaceFont = pkgs.callPackage ../../modules/monaspice_font.nix {};
|
|
in {
|
|
home.packages =
|
|
(with pkgs; [
|
|
alejandra
|
|
git-extras
|
|
git-credential-manager
|
|
meld
|
|
unzip
|
|
])
|
|
++ (with unstablePkgs; [
|
|
devenv
|
|
lazygit
|
|
nixd
|
|
nushell
|
|
])
|
|
++ [
|
|
monaspaceFont
|
|
];
|
|
}
|