1
Fork 0

feat: added purescript stuff

This commit is contained in:
Matei Adriel 2020-04-08 20:09:37 +03:00
parent df5ce78519
commit d2dbc13c26
5 changed files with 16 additions and 5 deletions

View file

@ -1 +1 @@
{ ... }: { imports = [ ./nix.nix ]; }
{ ... }: { imports = [ ./nix.nix ./purescript.nix ]; }

View file

@ -1,3 +1,7 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ nixfmt niv cached-nix-shell ];
home-manager.users.adrielus.home.packages = with pkgs; [
nixfmt
niv
cached-nix-shell
];
}

View file

@ -0,0 +1,8 @@
{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs.easy-purescript-nix; [
purescript
spago
purty
pscid
];
}