59 lines
938 B
Nix
59 lines
938 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
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; [
|
|
# Custom tools
|
|
rebuild
|
|
rebuild-no-inhibit
|
|
install-nix
|
|
update
|
|
upgrade
|
|
|
|
# System tools
|
|
age
|
|
alejandra
|
|
e2fsprogs
|
|
git
|
|
git-filter-repo
|
|
home-manager
|
|
htop
|
|
killall
|
|
neofetch
|
|
oh-my-zsh
|
|
rsync
|
|
helix
|
|
wget
|
|
zsh
|
|
tldr
|
|
|
|
# System libraries
|
|
|
|
# language servers and debuggers for helix
|
|
typst-lsp
|
|
rust-analyzer
|
|
rocmPackages.llvm.lldb
|
|
nil
|
|
];
|
|
|
|
# fonts.packages = with pkgs; [
|
|
# noto-fonts
|
|
# noto-fonts-emoji-blob-bin
|
|
# noto-fonts-emoji
|
|
# (nerdfonts.override {fonts = ["FiraCode" "DroidSansMono"];})
|
|
# ];
|
|
}
|