Bohdan's terminal configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

separated Gradle config from Android; added Gradle completions for shell

bpavuk 70ed500a 1e8a8f17

+9 -1
-1
nixos/home/development/android.nix
··· 3 3 { 4 4 home.packages = with pkgs; [ 5 5 jdk17 6 - gradle 7 6 android-studio 8 7 android-tools 9 8 ];
+1
nixos/home/development/default.nix
··· 5 5 (import ./android.nix {inherit config lib pkgs; }) 6 6 (import ./eza.nix {inherit config lib pkgs; }) 7 7 (import ./git.nix { inherit config lib pkgs; }) 8 + (import ./gradle.nix { inherit pkgs; }) 8 9 (import ./neovim.nix { inherit config lib pkgs; }) 9 10 (import ./ssh.nix { inherit config lib pkgs; }) 10 11 (import ./tmux.nix { inherit config lib pkgs; })
+8
nixos/home/development/gradle.nix
··· 1 + { pkgs, ... }: 2 + 3 + { 4 + home.packages = with pkgs; [ 5 + gradle 6 + gradle-completion 7 + ]; 8 + }