aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-01-30 16:39:09 -0800
committerCaroline Larimore <caroline@larimo.re>2025-01-30 16:39:09 -0800
commit784ee51b9613cac5764c9a33c343655e514e20f0 (patch)
treed6291c6c2a6be604913952f529cc335e827473c9 /flake.nix
Initial Commit
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