nix-configs

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

devel.nix (248B)


      1 { pkgs, ... }:
      2 {
      3   environment.systemPackages = with pkgs; [
      4     # graphical git
      5     gitg
      6     # basic notepad
      7     mousepad
      8     # bash
      9     shellcheck-minimal
     10     shfmt
     11     # go
     12     go
     13     # gcc
     14     gcc
     15     # web
     16     hugo
     17     # nix
     18     nixfmt
     19   ];
     20 }