feat: added elm and ms teams and some stuff
This commit is contained in:
parent
9b02d39b60
commit
9a18f75bcb
|
@ -25,6 +25,7 @@
|
|||
slack
|
||||
tdesktop # telegram for the desktop
|
||||
zoom-us
|
||||
teams
|
||||
|
||||
# browsers
|
||||
google-chrome
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
./fsharp.nix
|
||||
./rust.nix
|
||||
./racket.nix
|
||||
./elm.nix
|
||||
./haskell
|
||||
];
|
||||
}
|
||||
|
|
8
modules/dev/elm.nix
Normal file
8
modules/dev/elm.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }: {
|
||||
home-manager.users.adrielus.home.packages = with pkgs;
|
||||
with elmPackages; [
|
||||
elm
|
||||
elm-format
|
||||
# elm-repl
|
||||
];
|
||||
}
|
|
@ -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;
|
||||
})
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue