nixos/system/common.nix
2024-06-09 23:52:27 +02:00

30 lines
400 B
Nix

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