noisebridge-wiki/modules/common.nix
Jet 8cfede9f57
Some checks failed
CI / check (push) Has been cancelled
CI / deploy (push) Has been cancelled
feat: init
2026-03-17 04:07:44 -07:00

31 lines
546 B
Nix

{ config, pkgs, ... }:
{
nix = {
settings = {
auto-optimise-store = true;
experimental-features = [ "nix-command" "flakes" ];
trusted-users = [ "root" "@wheel" ];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
};
time.timeZone = "US/Pacific";
i18n.defaultLocale = "en_US.UTF-8";
services.timesyncd.enable = true;
environment.systemPackages = with pkgs; [
vim
git
htop
tmux
curl
wget
jq
dig
tcpdump
];
}