mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-25 13:47:01 -04:00
read desc
- refactor pinned to be a module using overlays (pkgs.pinned) - refactor dev/jvm.nix to use jb ides as modules - refactor balena etcher to be its own module (its pinned) - pin intellij to an older version for plugin support - move android studio to its own module under dev/ide/jb
This commit is contained in:
parent
2f2426b244
commit
96602259cd
10 changed files with 192 additions and 151 deletions
|
@ -1,7 +1,9 @@
|
|||
{pkgs, config, ...}:
|
||||
let
|
||||
pinned = import ../../../../pinned.nix { inherit pkgs config; };
|
||||
in {
|
||||
imports = [
|
||||
../../pinned.nix
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
pinned.vscode
|
||||
|
|
8
common/users/homeModules/dev/ide/jb/androidStudio.nix
Normal file
8
common/users/homeModules/dev/ide/jb/androidStudio.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
android-studio-tools
|
||||
android-studio
|
||||
];
|
||||
};
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./idea.nix
|
||||
./androidStudio.nix
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
../../../pinned.nix
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
jetbrains.idea-ultimate
|
||||
packages = with pkgs.pinned; [
|
||||
idea-ultimate
|
||||
];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./ide/jb/idea.nix
|
||||
./ide/jb/androidStudio.nix
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
android-studio-tools
|
||||
gradle
|
||||
jadx
|
||||
android-studio
|
||||
jetbrains.idea-ultimate
|
||||
# jbeap.idea-ultimate
|
||||
# jetbrains.pycharm-community
|
||||
];
|
||||
};
|
||||
programs = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue