fedora-csb-system-manager
 1{ pkgs, ... }:
 2{
 3  config = {
 4    # Platform
 5    nixpkgs.hostPlatform = "x86_64-linux";
 6
 7    # System packages managed by Nix
 8    environment.systemPackages = with pkgs; [
 9      # Core utilities
10      vim
11      htop
12      curl
13      git
14      ripgrep
15      fd
16      jq
17
18      # Development tools
19      helix
20
21      # Networking
22      wireguard-tools
23    ];
24
25  };
26}