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-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-01 11:31:36 +01:00
|
|
|
spacevim
|
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
|
|
|
];
|
|
|
|
|
|
|
|
fonts.packages = with pkgs; [
|
2024-01-30 12:03:29 +01:00
|
|
|
noto-fonts
|
|
|
|
noto-fonts-emoji-blob-bin
|
|
|
|
noto-fonts-emoji
|
2024-02-28 14:26:58 +01:00
|
|
|
(nerdfonts.override {fonts = ["FiraCode" "DroidSansMono"];})
|
2024-01-30 12:03:29 +01:00
|
|
|
];
|
|
|
|
}
|