nixos-config/host/modules/packages.nix

31 lines
549 B
Nix
Raw Normal View History

{ pkgs, inputs, ... }: {
nixpkgs.config.allowUnfree = true;
2024-04-17 05:52:14 +05:00
environment.systemPackages = with pkgs; [
file
tree
wget
git
2025-01-04 20:50:51 +03:00
(btop.override { cudaSupport = true; })
2024-04-17 05:52:14 +05:00
unzip
2024-04-23 00:01:25 +03:00
yazi
2024-04-17 05:52:14 +05:00
zip
2024-04-17 08:15:16 +05:00
lazygit
2024-04-22 10:31:57 +03:00
httpie
ncdu
tldr
2024-05-01 15:43:11 +03:00
helix
2025-04-12 00:20:53 +03:00
pinentry
2024-04-17 05:52:14 +05:00
];
2025-03-31 14:55:54 +03:00
fonts = {
enableDefaultPackages = false;
packages = with pkgs; [
jetbrains-mono # Best mono font
noto-fonts-cjk-sans # Japanese
powerline-symbols # Console decoration
unifont # Other
];
};
2024-04-17 05:52:14 +05:00
}