nix: actually started my internship

This commit is contained in:
Leana Chiang 2024-05-13 15:21:03 +02:00 committed by Léana 江
parent 061895bfc9
commit 5fbc61bfa6
2 changed files with 6 additions and 5 deletions

View file

@ -0,0 +1,15 @@
{ pkgs, ... }:
let
inherit (pkgs) ghc-pin;
in
{
home = {
username = "ychiang";
homeDirectory = "/udd/ychiang";
};
home.packages = [
ghc-pin.ghc
ghc-pin.haskell-language-server
];
}