nixos-config/nixos/packages.nix

39 lines
736 B
Nix
Raw Normal View History

2025-01-26 15:02:48 +03:00
{ pkgs, pkgs-unstable, inputs, ... }: {
2024-04-17 05:52:14 +05:00
nixpkgs.config = {
allowUnfree = true;
2024-07-24 00:43:08 +03:00
permittedInsecurePackages = ["python-2.7.18.8" "electron-25.9.0" "freeimage-unstable-2021-11-01" "obsidian-1.5.12"];
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-01-26 15:02:48 +03:00
pkgs-unstable.home-manager
2024-04-17 05:52:14 +05:00
];
2025-01-26 15:02:48 +03:00
fonts.packages = with pkgs-unstable; [
2024-04-17 05:52:14 +05:00
jetbrains-mono
noto-fonts
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
];
}