From 72508268d6a35653511637068938e14ff0d7f442 Mon Sep 17 00:00:00 2001 From: Spectre Date: Sat, 8 Jun 2024 15:17:03 +0200 Subject: [PATCH] base --- system/common.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 system/common.nix diff --git a/system/common.nix b/system/common.nix new file mode 100644 index 00000000..713d914d --- /dev/null +++ b/system/common.nix @@ -0,0 +1,28 @@ +{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"; +}