nixos-configs/configs/home/dev.nix
2021-01-15 23:54:55 +01:00

12 lines
206 B
Nix

{ config, lib, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
jdk14
jetbrains.idea-community
jetbrains.idea-ultimate
maven
sbt
geckodriver
];
}