aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-04-14 22:31:54 -0700
committerCaroline Larimore <caroline@larimo.re>2025-04-14 22:35:19 -0700
commitdc0cc9e659a271fa80e3baf2c9ec478521cc3967 (patch)
tree2850ab64369f87501c6bdb293ecd95b79d11d647 /flake.nix
parentbf7314702e04d3f353c4cf95e887959d9451641b (diff)
nixification
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix20
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