nixos/system/common.nix
2024-06-08 15:17:03 +02:00

28 lines
369 B
Nix

{pkgs, ...}: {
boot.tmp.useTmpfs = true;
time.timeZone = "Europe/Berlin";
environment.systemPackages = with pkgs; [
age
compsize
duf
eza
file
htop
btop
jq
yq
du-dust
ranger
ripgrep
sops
wget
wireguard-tools
zip
];
environment.pathsToLink = ["/share/zsh"];
system.stateVersion = "24.11";
}