Files
nixos-config/host/modules/packages.nix
2025-05-05 16:46:17 +03:00

31 lines
576 B
Nix

{ pkgs-unstable, inputs, ... }: {
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs-unstable; [
file
tree
wget
git
(btop.override { cudaSupport = true; })
unzip
yazi
zip
lazygit
httpie
ncdu
tldr
helix
pinentry
];
fonts = {
enableDefaultPackages = false;
packages = with pkgs-unstable; [
jetbrains-mono # Best mono font
noto-fonts-cjk-sans # Japanese
powerline-symbols # Console decoration
unifont # Other
];
};
}