Initial configuration

This commit is contained in:
Chris Josten 2020-05-12 10:53:09 +02:00
commit 44b011a6b4
15 changed files with 328 additions and 0 deletions

5
common/devel/default.nix Normal file
View file

@ -0,0 +1,5 @@
{config, ... }:
{
imports = [./pkgs.nix];
}

19
common/devel/pkgs.nix Normal file
View file

@ -0,0 +1,19 @@
{ pkgs, ...}:
{
environment = {
systemPackages = with pkgs; [
# General
git
# C/C++
gcc
cmake
qtcreator
# Java
gradle
jetbrains.idea-ultimate
maven
];
};
}