mirror of
https://github.com/smg1024/homelab.git
synced 2026-05-22 20:32:58 +09:00
add base system module
This commit is contained in:
parent
f4c2897cd0
commit
ea767d86e0
1 changed files with 37 additions and 1 deletions
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue