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

21 lines
348 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
./kotlin.nix
# ./racket.nix
# ./elm.nix
# Proof assistants
2022-06-18 23:09:21 +02:00
# ./agda.nix
2022-05-11 23:11:54 +02:00
# ./idris.nix
./lean.nix
];
2020-04-18 09:04:12 +02:00
}