nixos-configs/configs/home/dev.nix
2021-07-14 19:59:43 +02:00

19 lines
343 B
Nix

{ config, lib, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
jdk
jetbrains.idea-community
jetbrains.idea-ultimate
maven
sbt
geckodriver
];
services.gpg-agent = {
enable = true;
enableSshSupport = false;
pinentryFlavor = "gtk2";
};
programs.gpg.enable = true;
}