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

50 lines
785 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
2024-02-29 14:39:35 +01:00
install-nix
systemd-rebuild
2024-02-26 14:17:34 +01:00
# System tools
age
2024-01-30 14:10:27 +01:00
alejandra
git
git-filter-repo
home-manager
htop
2024-02-26 14:25:07 +01:00
libnotify
neofetch
oh-my-zsh
rsync
2024-02-29 15:44:34 +01:00
helix
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
# (nerdfonts.override {fonts = ["FiraCode" "DroidSansMono"];})
# ];
}