feat: init
Some checks failed
CI / check (push) Has been cancelled
CI / deploy (push) Has been cancelled

This commit is contained in:
Jet 2026-03-17 04:07:14 -07:00
commit 8cfede9f57
No known key found for this signature in database
28 changed files with 2129 additions and 0 deletions

31
modules/common.nix Normal file
View file

@ -0,0 +1,31 @@
{ 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
];
}