Avoid using separate Hix file

This commit is contained in:
George Thomas 2025-12-10 14:31:44 +00:00
parent 415ed20dd5
commit e6d26cab45
2 changed files with 5 additions and 7 deletions

View File

@ -26,6 +26,11 @@
final.haskell-nix.hix.project { final.haskell-nix.hix.project {
src = ./.; src = ./.;
evalSystem = "x86_64-linux"; 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) (import rust-overlay)

View File

@ -1,7 +0,0 @@
{ ... }: {
name = "aoc";
compiler-nix-name = "ghc912";
shell.tools.cabal = "latest";
shell.tools.hlint = "latest";
shell.tools.haskell-language-server = "latest";
}