diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-04-14 22:31:54 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 22:35:19 -0700 |
| commit | dc0cc9e659a271fa80e3baf2c9ec478521cc3967 (patch) | |
| tree | 2850ab64369f87501c6bdb293ecd95b79d11d647 /flake.nix | |
| parent | bf7314702e04d3f353c4cf95e887959d9451641b (diff) | |
nixification
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..68df52c --- /dev/null +++ b/flake.nix @@ -0,0 +1,20 @@ +{ + inputs = rec { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + }; + outputs = inputs @ { + self, + nixpkgs, + ... + }: + let + pkgs = nixpkgs.legacyPackages.x86_64-linux; + in + { + devShells.x86_64-linux.default = pkgs.mkShell { + packages = with pkgs; [ + go + ]; + }; + }; +}
\ No newline at end of file |