From e6d26cab456c2d567fe630cf1dbcf6f3c191a170 Mon Sep 17 00:00:00 2001 From: George Thomas Date: Wed, 10 Dec 2025 14:31:44 +0000 Subject: [PATCH] Avoid using separate Hix file --- flake.nix | 5 +++++ nix/hix.nix | 7 ------- 2 files changed, 5 insertions(+), 7 deletions(-) delete mode 100644 nix/hix.nix diff --git a/flake.nix b/flake.nix index 5b8f86a..29518a8 100644 --- a/flake.nix +++ b/flake.nix @@ -26,6 +26,11 @@ final.haskell-nix.hix.project { src = ./.; evalSystem = "x86_64-linux"; + name = "aoc"; + compiler-nix-name = "ghc912"; + shell.tools.cabal = "latest"; + shell.tools.hlint = "latest"; + shell.tools.haskell-language-server = "latest"; }; }) (import rust-overlay) diff --git a/nix/hix.nix b/nix/hix.nix deleted file mode 100644 index c24a2a6..0000000 --- a/nix/hix.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ ... }: { - name = "aoc"; - compiler-nix-name = "ghc912"; - shell.tools.cabal = "latest"; - shell.tools.hlint = "latest"; - shell.tools.haskell-language-server = "latest"; -}