cmd-zet/flake.nix

27 lines
552 B
Nix
Raw Normal View History

2025-10-07 07:51:48 +01:00
{
inputs = {
devshell.url = "github:numtide/devshell";
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
2025-10-07 07:51:48 +01:00
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ inputs.devshell.flakeModule ];
systems = [ "x86_64-linux" ];
perSystem =
{ pkgs, ... }:
{
devshells.default = {
packages = with pkgs; [
go
gopls
];
};
2025-10-07 07:51:48 +01:00
};
};
}