Compare commits

..
2 Commits
Author SHA1 Message Date
Administrateur d3dd555895 Last fix on darwin 2026-02-16 21:10:26 +01:00
Administrateur 5e42a1aa37 Clean of env files 2026-02-16 12:27:29 +01:00
8 changed files with 7 additions and 97 deletions
+1 -7
View File
@@ -17,15 +17,9 @@
home.shell.git.enable = true; home.shell.git.enable = true;
home.shell.neovim.enable = true; home.shell.neovim.enable = true;
# Nix env deps # Nix & languages env deps
home.env.nix.enable = true; 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;
# No Home Application Folders # No Home Application Folders
targets.darwin.linkApps.enable = false; targets.darwin.linkApps.enable = false;
targets.darwin.copyApps.enable = false; targets.darwin.copyApps.enable = false;
+3 -7
View File
@@ -14,8 +14,8 @@
minimize-to-application = true; minimize-to-application = true;
show-recents = false; show-recents = false;
tilesize = 30; tilesize = 30;
autohide = true; autohide = false;
orientation = "bottom"; orientation = "left";
persistent-apps = [ persistent-apps = [
{ app = "/System/Applications/Apps.app"; } { app = "/System/Applications/Apps.app"; }
{ app = "/Applications/Zen.app"; } { app = "/Applications/Zen.app"; }
@@ -28,12 +28,8 @@
{ app = "/Applications/Zed.app"; } { app = "/Applications/Zed.app"; }
{ app = "/Applications/IntelliJ IDEA.app"; } { app = "/Applications/IntelliJ IDEA.app"; }
{ app = "/Applications/PyCharm.app"; } { app = "/Applications/PyCharm.app"; }
{ app = "/Applications/PhpStorm.app"; }
{ app = "/Applications/RustRover.app"; }
{ app = "/Applications/CLion.app"; } { app = "/Applications/CLion.app"; }
{ app = "/Applications/GoLand.app"; } { app = "/Applications/RustRover.app"; }
{ app = "/Applications/DataGrip.app"; }
{ app = "/Applications/DataSpell.app"; }
{ app = "/Applications/iTerm.app"; } { app = "/Applications/iTerm.app"; }
]; ];
persistent-others = [ ]; 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; with lib;
let let
cfg = config.home.env.r; cfg = config.home.env.shell;
in in
{ {
options.home.env.r = { options.home.env.shell = {
enable = mkEnableOption "Zen Editor options"; enable = mkEnableOption "Zen Editor options";
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [
R devenv
]; ];
}; };
-1
View File
@@ -14,7 +14,6 @@ in
"pycharm" "pycharm"
"clion" "clion"
"rustrover" "rustrover"
"dataspell"
]; ];
}; };