2024-09-05 17:55:42 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
2023-02-10 17:34:46 +00:00
|
|
|
|
|
|
|
## Optimizations
|
|
|
|
|
|
|
|
# Link identical files
|
|
|
|
nix.settings.auto-optimise-store = true;
|
|
|
|
|
|
|
|
# Garbage collection
|
|
|
|
nix.gc = {
|
|
|
|
automatic = true;
|
|
|
|
options = "--delete-older-than 30d";
|
|
|
|
};
|
|
|
|
|
|
|
|
## Other
|
|
|
|
|
|
|
|
# Flakes
|
2024-09-05 17:55:42 +00:00
|
|
|
nix.settings.experimental-features = [
|
|
|
|
"nix-command"
|
|
|
|
"flakes"
|
|
|
|
];
|
2023-02-10 17:34:46 +00:00
|
|
|
|
|
|
|
# Enable fish (needed for nix completions)
|
|
|
|
programs.fish.enable = true;
|
|
|
|
|
|
|
|
# Packages used on all systems
|
2023-02-18 14:36:17 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
2023-09-29 13:04:31 +00:00
|
|
|
ccase
|
2023-06-01 17:07:54 +00:00
|
|
|
comma
|
2023-07-28 19:28:23 +00:00
|
|
|
dogdns
|
2023-08-14 12:05:13 +00:00
|
|
|
du-dust
|
2023-02-18 14:36:17 +00:00
|
|
|
git
|
2024-11-22 16:26:16 +00:00
|
|
|
headscale
|
2023-09-29 13:04:31 +00:00
|
|
|
imagemagick
|
2023-12-17 20:07:01 +00:00
|
|
|
jq
|
2023-02-18 14:36:17 +00:00
|
|
|
killall
|
2023-07-28 19:28:23 +00:00
|
|
|
mtr
|
2024-11-22 16:26:16 +00:00
|
|
|
nmap
|
2023-06-01 17:07:54 +00:00
|
|
|
openssl
|
2023-02-18 14:36:17 +00:00
|
|
|
rsync
|
2023-02-22 20:23:55 +00:00
|
|
|
sqlite-interactive
|
2023-06-01 17:07:54 +00:00
|
|
|
wget
|
|
|
|
xclip
|
2023-02-18 14:36:17 +00:00
|
|
|
];
|
2023-02-10 17:34:46 +00:00
|
|
|
|
2024-11-22 16:26:16 +00:00
|
|
|
services.tailscale.enable = true;
|
|
|
|
|
2023-03-06 19:37:55 +00:00
|
|
|
# 🥺
|
|
|
|
# security.please.enable = true;
|
2023-02-10 17:34:46 +00:00
|
|
|
}
|