1
Fork 0

feat: edopro derivation (which doesnt work yet)

This commit is contained in:
Matei Adriel 2020-05-30 23:19:57 +03:00
parent 1aad2582da
commit 1f73589d8b
5 changed files with 58 additions and 2 deletions

View file

@ -1,5 +1,11 @@
{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs; [ gcc ];
imports =
[ ./nix.nix ./purescript.nix ./javascript.nix ./rust.nix ./haskell ];
imports = [
./nix.nix
./purescript.nix
./javascript.nix
./fsharp.nix
./rust.nix
./haskell
];
}

3
modules/dev/fsharp.nix Normal file
View file

@ -0,0 +1,3 @@
{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs; [ dotnet-sdk mono ];
}