add base system module

This commit is contained in:
Sangmin Kim 2026-05-19 13:26:45 +09:00
parent f4c2897cd0
commit ea767d86e0

View file

@ -1 +1,37 @@
# TODO: Define common base system settings.
{ pkgs, ... }:
{
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
nix.settings.trusted-users = [
"root"
"@wheel"
];
time.timeZone = "Asia/Seoul";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true;
networking.firewall.enable = true;
environment.systemPackages = with pkgs; [
git
vim
curl
wget
htop
tmux
jq
fd
ripgrep
lsof
pciutils
usbutils
dnsutils
];
}