tangled
alpha
login
or
join now
nel.pet
/
cyclamen
4
fork
atom
NixOS and Home Manager config
4
fork
atom
overview
issues
pulls
pipelines
feat: get idea through nixpkgs
nel.pet
7 months ago
e811f99d
8cb01ea6
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
+9
-2
3 changed files
expand all
collapse all
unified
split
modules
home
default.nix
envvars.nix
java.nix
+1
modules/home/default.nix
···
11
11
./bash.nix
12
12
./envvars.nix
13
13
./misc.nix
14
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
6
-
# Added by Toolbox App
7
7
-
PATH = "${config.home.homeDirectory}/.local/bin:${config.home.homeDirectory}/.local/share/JetBrains/Toolbox/scripts:$PATH";
6
6
+
# Add .local/bin to PATH
7
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
1
+
{ pkgs, ... }: {
2
2
+
home.packages = with pkgs; [
3
3
+
# Use -bin as logging in doesnt seem to work on the source build
4
4
+
jetbrains.idea-community-bin
5
5
+
];
6
6
+
}