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

63 lines
1,005 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
rebuild-no-inhibit
2024-02-29 14:39:35 +01:00
install-nix
2024-03-12 14:44:33 +01:00
update
upgrade
simple-completion-language-server
2024-02-26 14:17:34 +01:00
# System tools
age
2024-01-30 14:10:27 +01:00
alejandra
2024-03-18 21:36:29 +01:00
e2fsprogs
git
git-filter-repo
2024-04-29 23:25:20 +02:00
helix
home-manager
htop
2024-03-14 17:03:47 +01:00
killall
oh-my-zsh
rsync
2024-04-29 23:30:16 +02:00
tre-command
wget
zsh
2024-02-07 13:50:03 +01:00
tldr
# System libraries
2024-02-22 11:55:48 +01:00
];
2024-04-29 23:51:07 +02:00
fonts = {
packages = with pkgs; [
cantarell-fonts
dejavu_fonts
fira-code
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
paratype-pt-sans
paratype-pt-mono
paratype-pt-serif
roboto
twemoji-color-font
];
enableDefaultPackages = false;
};
}