2024-01-30 12:03:29 +01:00
|
|
|
{
|
|
|
|
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
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2024-01-30 12:03:29 +01:00
|
|
|
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
|
2024-02-26 14:17:34 +01:00
|
|
|
|
2024-01-30 12:03:29 +01:00
|
|
|
# System tools
|
|
|
|
age
|
2024-01-30 14:10:27 +01:00
|
|
|
alejandra
|
2024-01-30 12:03:29 +01:00
|
|
|
git
|
|
|
|
git-filter-repo
|
|
|
|
home-manager
|
|
|
|
htop
|
2024-02-26 14:25:07 +01:00
|
|
|
libnotify
|
2024-01-30 12:03:29 +01:00
|
|
|
neofetch
|
|
|
|
oh-my-zsh
|
|
|
|
rsync
|
2024-02-29 15:44:34 +01:00
|
|
|
helix
|
2024-01-30 12:03:29 +01:00
|
|
|
wget
|
|
|
|
zsh
|
2024-02-07 13:50:03 +01:00
|
|
|
tldr
|
2024-01-30 12:03:29 +01:00
|
|
|
|
|
|
|
# System libraries
|
2024-02-22 11:55:48 +01:00
|
|
|
];
|
|
|
|
|
2024-02-28 14:28:17 +01:00
|
|
|
# fonts.packages = with pkgs; [
|
|
|
|
# noto-fonts
|
|
|
|
# noto-fonts-emoji-blob-bin
|
|
|
|
# noto-fonts-emoji
|
|
|
|
# (nerdfonts.override {fonts = ["FiraCode" "DroidSansMono"];})
|
|
|
|
# ];
|
2024-01-30 12:03:29 +01:00
|
|
|
}
|