NixOS-Config/nixos/shared/packages/default.nix

52 lines
784 B
Nix
Raw Normal View History

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
2024-02-26 14:17:34 +01:00
nixpkgs = {
# You can add overlays here
overlays = [
# Add overlays your own flake exports (from overlays and pkgs dir):
outputs.overlays.additions
outputs.overlays.modifications
];
};
environment.systemPackages = with pkgs; [
2024-02-26 14:17:34 +01:00
# Custom tools
rebuild
# System tools
age
2024-01-30 14:10:27 +01:00
alejandra
git
git-filter-repo
home-manager
htop
neofetch
oh-my-zsh
rsync
2024-02-01 11:31:36 +01:00
spacevim
wget
zsh
2024-02-07 13:50:03 +01:00
tldr
# System libraries
2024-02-22 11:55:48 +01:00
];
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-emoji-blob-bin
noto-fonts-emoji
2024-02-22 11:55:48 +01:00
liberation_ttf
fira-code
fira-code-symbols
mplus-outline-fonts.githubRelease
dina-font
proggyfonts
];
}