Clean of env files

This commit is contained in:
2026-02-16 12:27:29 +01:00
parent aaed9ad61f
commit 5e42a1aa37
8 changed files with 7 additions and 96 deletions
+2 -7
View File
@@ -17,14 +17,9 @@
home.shell.git.enable = true;
home.shell.neovim.enable = true;
# Nix env deps
# Nix & languages env deps
home.env.nix.enable = true;
# Languages env deps
home.env.r.enable = true;
home.env.jdk.enable = true;
home.env.rust.enable = true;
home.env.python.enable = true;
home.env.shell.enable = false;
# No Home Application Folders
targets.darwin.linkApps.enable = false;
+2 -6
View File
@@ -14,7 +14,7 @@
minimize-to-application = true;
show-recents = false;
tilesize = 30;
autohide = true;
autohide = false;
orientation = "bottom";
persistent-apps = [
{ app = "/System/Applications/Apps.app"; }
@@ -28,12 +28,8 @@
{ app = "/Applications/Zed.app"; }
{ app = "/Applications/IntelliJ IDEA.app"; }
{ app = "/Applications/PyCharm.app"; }
{ app = "/Applications/PhpStorm.app"; }
{ app = "/Applications/RustRover.app"; }
{ app = "/Applications/CLion.app"; }
{ app = "/Applications/GoLand.app"; }
{ app = "/Applications/DataGrip.app"; }
{ app = "/Applications/DataSpell.app"; }
{ app = "/Applications/RustRover.app"; }
{ app = "/Applications/iTerm.app"; }
];
persistent-others = [ ];
-29
View File
@@ -1,29 +0,0 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.env.jdk;
in
{
options.home.env.jdk = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
jdk25
];
home.sessionVariables = {
JAVA_HOME = "${pkgs.jdk25}";
M2_HOME = "${config.xdg.dataHome}/maven";
MVN_HOME = "${config.xdg.dataHome}/maven";
MAVEN_HOME = "${config.xdg.dataHome}/maven";
};
};
}
-23
View File
@@ -1,23 +0,0 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.env.python;
in
{
options.home.env.python = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
python3
uv
];
};
}
-27
View File
@@ -1,27 +0,0 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.env.rust;
in
{
options.home.env.rust = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
rustup
];
home.sessionVariables = {
CARGO_HOME = "${config.xdg.dataHome}/cargo";
RUSTUP_HOME = "${config.xdg.dataHome}/rustup";
};
};
}
@@ -6,16 +6,16 @@
}:
with lib;
let
cfg = config.home.env.r;
cfg = config.home.env.shell;
in
{
options.home.env.r = {
options.home.env.shell = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
R
devenv
];
};
-1
View File
@@ -14,7 +14,6 @@ in
"pycharm"
"clion"
"rustrover"
"dataspell"
];
};