feat: added purescript stuff
This commit is contained in:
parent
df5ce78519
commit
d2dbc13c26
|
@ -1,8 +1,6 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
environment.systemPackages = with pkgs; [
|
home-manager.users.adrielus.home.packages = with pkgs; [
|
||||||
# Tool to allow hashing passwords from the cmd
|
|
||||||
mkpasswd
|
mkpasswd
|
||||||
|
|
||||||
vscodium
|
vscodium
|
||||||
google-chrome
|
google-chrome
|
||||||
discord
|
discord
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{ ... }: { imports = [ ./nix.nix ]; }
|
{ ... }: { imports = [ ./nix.nix ./purescript.nix ]; }
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
{ pkgs, ... }: {
|
{ 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 {
|
with self; rec {
|
||||||
inherit imports;
|
inherit imports;
|
||||||
cached-nix-shell = callPackage imports.cached-nix-shell { };
|
cached-nix-shell = callPackage imports.cached-nix-shell { };
|
||||||
|
easy-purescript-nix = callPackage imports.easy-purescript-nix { };
|
||||||
inherit (import imports.niv { }) niv;
|
inherit (import imports.niv { }) niv;
|
||||||
inherit (import imports.all-hies { }) all-hies;
|
inherit (import imports.all-hies { }) all-hies;
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue