19 lines
201 B
Nix
19 lines
201 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
];
|
|
|
|
home = {
|
|
packages = with pkgs.unstable; [
|
|
dbeaver-bin
|
|
go
|
|
nodejs
|
|
yarn
|
|
|
|
steam-run
|
|
jetbrains.idea-community
|
|
];
|
|
};
|
|
}
|