nixos-config/host/modules/packages.nix

36 lines
618 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
2024-04-17 05:52:14 +05:00
];
fonts.packages = with pkgs; [
2024-04-17 05:52:14 +05:00
jetbrains-mono
noto-fonts
2025-03-01 22:05:21 +03:00
(google-fonts.override{fonts=["Press Start 2P" "Overpass Mono"];})
2024-04-17 05:52:14 +05:00
noto-fonts-emoji
noto-fonts-cjk-sans
2024-04-17 05:52:14 +05:00
twemoji-color-font
font-awesome
powerline-fonts
powerline-symbols
2024-07-31 21:37:08 +03:00
ubuntu_font_family
unifont
2024-12-17 21:11:28 +03:00
nerd-fonts.symbols-only
2024-12-14 18:11:03 +03:00
corefonts
2024-04-17 05:52:14 +05:00
];
}