Move dev tools to a dedicated file

This commit is contained in:
Paul-Henri Froidmont 2020-03-16 15:01:59 +01:00
parent 52f2d25300
commit 1bf3431b47
4 changed files with 16 additions and 5 deletions

11
configs/dev.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.froidmpa = {pkgs, config, ...}: {
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
jdk
jetbrains.idea-ultimate
maven
];
};
}