NixOS and Home Manager config

feat: get idea through nixpkgs

nel.pet e811f99d 8cb01ea6

verified
+9 -2
+1
modules/home/default.nix
··· 11 11 ./bash.nix 12 12 ./envvars.nix 13 13 ./misc.nix 14 + ./java.nix 14 15 ]; 15 16 }
+2 -2
modules/home/envvars.nix
··· 3 3 JAVA_HOME = "/etc/alternatives/java_sdk"; 4 4 GRADLE_USER_HOME = "${config.home.homeDirectory}/.local/share/gradle"; 5 5 6 - # Added by Toolbox App 7 - PATH = "${config.home.homeDirectory}/.local/bin:${config.home.homeDirectory}/.local/share/JetBrains/Toolbox/scripts:$PATH"; 6 + # Add .local/bin to PATH 7 + PATH = "${config.home.homeDirectory}/.local/bin:$PATH"; 8 8 9 9 # Cargo 10 10 RUSTUP_HOME = "${config.home.homeDirectory}/.local/share/rustup";
+6
modules/home/java.nix
··· 1 + { pkgs, ... }: { 2 + home.packages = with pkgs; [ 3 + # Use -bin as logging in doesnt seem to work on the source build 4 + jetbrains.idea-community-bin 5 + ]; 6 + }