1
Fork 0

feat: added elm and ms teams and some stuff

This commit is contained in:
Matei Adriel 2020-07-16 11:39:15 +03:00
parent 9b02d39b60
commit 9a18f75bcb
4 changed files with 15 additions and 1 deletions

View file

@ -25,6 +25,7 @@
slack
tdesktop # telegram for the desktop
zoom-us
teams
# browsers
google-chrome

View file

@ -7,6 +7,7 @@
./fsharp.nix
./rust.nix
./racket.nix
./elm.nix
./haskell
];
}

8
modules/dev/elm.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs;
with elmPackages; [
elm
elm-format
# elm-repl
];
}

View file

@ -2,7 +2,10 @@
let
imports = import ../nix/sources.nix;
edoproPackage = import ./applications/edopro.nix;
unstable = import imports.nixpkgs-unstable { config.allowUnfree = true; };
unstable = import imports.nixpkgs-unstable {
config.allowUnfree = true;
config.allowBroken = true;
};
in {
nixpkgs.overlays = [
(self: super:
@ -26,6 +29,7 @@ in {
vscodium = unstable.vscodium;
deno = unstable.deno;
dotnet-sdk = dotnet-sdk_3;
elm-repl = unstable.haskellPackages.elm-repl;
})
];