Initial configuration
This commit is contained in:
commit
44b011a6b4
15 changed files with 328 additions and 0 deletions
5
common/devel/default.nix
Normal file
5
common/devel/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{config, ... }:
|
||||
|
||||
{
|
||||
imports = [./pkgs.nix];
|
||||
}
|
19
common/devel/pkgs.nix
Normal file
19
common/devel/pkgs.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ...}:
|
||||
|
||||
{
|
||||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
# General
|
||||
git
|
||||
# C/C++
|
||||
gcc
|
||||
cmake
|
||||
qtcreator
|
||||
|
||||
# Java
|
||||
gradle
|
||||
jetbrains.idea-ultimate
|
||||
maven
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue