feat: added purescript stuff
This commit is contained in:
parent
df5ce78519
commit
d2dbc13c26
|
@ -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
|
||||
|
|
|
@ -1 +1 @@
|
|||
{ ... }: { imports = [ ./nix.nix ]; }
|
||||
{ ... }: { imports = [ ./nix.nix ./purescript.nix ]; }
|
||||
|
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
8
modules/dev/purescript.nix
Normal file
8
modules/dev/purescript.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }: {
|
||||
home-manager.users.adrielus.home.packages = with pkgs.easy-purescript-nix; [
|
||||
purescript
|
||||
spago
|
||||
purty
|
||||
pscid
|
||||
];
|
||||
}
|
|
@ -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;
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue