initial config

This commit is contained in:
matiss
2026-04-20 15:08:47 +00:00
commit 8f4daf76b8
27 changed files with 1458 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# ==========================================
# SYSTEM SERVICES CONFIGURATION
# ==========================================
{ config, pkgs, ... }:
{
# Zsh at system level (config lives in home-manager)
programs.zsh.enable = true;
# Docker
virtualisation.docker = {
enable = true;
autoPrune = {
enable = true;
dates = "weekly";
flags = [ "--all" "--volumes" ];
};
};
# nix-ld — run unpatched binaries (Cursor, Codex, etc.)
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
stdenv.cc.cc
zlib
fuse3
icu
nss
openssl
curl
expat
];
}