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-03-02 17:37:35 +01:00
|
|
|
rebuild-no-inhibit
|
2024-02-29 14:39:35 +01:00
|
|
|
install-nix
|
2024-03-12 14:44:33 +01:00
|
|
|
update
|
|
|
|
upgrade
|
2024-05-01 23:05:24 +02:00
|
|
|
simple-completion-language-server
|
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-03-18 21:36:29 +01:00
|
|
|
e2fsprogs
|
2024-01-30 12:03:29 +01:00
|
|
|
git
|
|
|
|
git-filter-repo
|
2024-04-29 23:25:20 +02:00
|
|
|
helix
|
2024-01-30 12:03:29 +01:00
|
|
|
home-manager
|
|
|
|
htop
|
2024-03-14 17:03:47 +01:00
|
|
|
killall
|
2024-01-30 12:03:29 +01:00
|
|
|
oh-my-zsh
|
|
|
|
rsync
|
2024-04-29 23:30:16 +02:00
|
|
|
tre-command
|
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-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;
|
|
|
|
};
|
2024-01-30 12:03:29 +01:00
|
|
|
}
|