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,8 +1,6 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
# Tool to allow hashing passwords from the cmd
home-manager.users.adrielus.home.packages = with pkgs; [
mkpasswd
vscodium
google-chrome
discord

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
];
}

View file

@ -6,6 +6,7 @@ in {
with self; rec {
inherit imports;
cached-nix-shell = callPackage imports.cached-nix-shell { };
easy-purescript-nix = callPackage imports.easy-purescript-nix { };
inherit (import imports.niv { }) niv;
inherit (import imports.all-hies { }) all-hies;
})