1
Fork 0
satellite/modules/dev/default.nix

20 lines
327 B
Nix
Raw Normal View History

2020-05-13 11:34:15 +02:00
{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs; [ gcc ];
imports = [
./nix.nix
./purescript.nix
./javascript.nix
./rust.nix
2020-10-07 10:51:04 +02:00
./dhall.nix
./haskell
./fsharp.nix
# ./racket.nix
# ./elm.nix
# Proof assistants
./agda.nix
./idris.nix
./lean.nix
];
2020-04-18 09:04:12 +02:00
}