File: devenv.nix

package info (click to toggle)
golang-github-sagikazarmark-locafero 0.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 184 kB
  • sloc: makefile: 2
file content (17 lines) | stat: -rw-r--r-- 211 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs, ... }:

{
  cachix.pull = [ "sagikazarmark-dev" ];

  languages = {
    go = {
      enable = true;
      package = pkgs.go_1_25;
    };
  };

  packages = with pkgs; [
    just
    golangci-lint
  ];
}