nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

devel.nix (185B)


      1 { pkgs, ... }:
      2 {
      3   environment.systemPackages = with pkgs; [
      4     # ide
      5     geany
      6     # bash
      7     shellcheck-minimal
      8     shfmt
      9     # go
     10     go
     11     # gcc
     12     gcc
     13     # web
     14     hugo
     15   ];
     16 }