From de17456cc212df15a762236d06948f03053eec96 Mon Sep 17 00:00:00 2001 From: Laurent Gueret Date: Thu, 19 Feb 2026 09:03:17 +0100 Subject: [PATCH] Fix --- hosts/darwin/home/alistreaza.nix | 8 +++----- hosts/darwin/home/config/ghostty/config | 2 +- modules/home/darwin/env/jdk.nix | 1 - modules/home/darwin/env/python.nix | 1 - modules/home/darwin/env/rust.nix | 3 --- 5 files changed, 4 insertions(+), 11 deletions(-) diff --git a/hosts/darwin/home/alistreaza.nix b/hosts/darwin/home/alistreaza.nix index 2ff9fde..f34919e 100644 --- a/hosts/darwin/home/alistreaza.nix +++ b/hosts/darwin/home/alistreaza.nix @@ -18,12 +18,10 @@ }; home.file = { - file = { - ".config/ghostty/" = { - source = ./config/ghostty; - }; + ".config/ghostty/" = { + source = ./config/ghostty; }; - } + }; # Shell apps home.shell.nh.enable = true; diff --git a/hosts/darwin/home/config/ghostty/config b/hosts/darwin/home/config/ghostty/config index 67a5ac7..b0203a7 100644 --- a/hosts/darwin/home/config/ghostty/config +++ b/hosts/darwin/home/config/ghostty/config @@ -9,5 +9,5 @@ window-width = 100 # Themes background-blur=true -background-opacity = 0.75 +background-opacity = 0.85 theme = Spacegray Eighties diff --git a/modules/home/darwin/env/jdk.nix b/modules/home/darwin/env/jdk.nix index f9fd792..6cb9fa1 100644 --- a/modules/home/darwin/env/jdk.nix +++ b/modules/home/darwin/env/jdk.nix @@ -16,7 +16,6 @@ in home.packages = with pkgs; [ jdk25_headless - maven ]; home.sessionVariables = { diff --git a/modules/home/darwin/env/python.nix b/modules/home/darwin/env/python.nix index d8ec70c..914afd7 100644 --- a/modules/home/darwin/env/python.nix +++ b/modules/home/darwin/env/python.nix @@ -15,7 +15,6 @@ in config = mkIf cfg.enable { home.packages = with pkgs; [ - python315 uv ]; diff --git a/modules/home/darwin/env/rust.nix b/modules/home/darwin/env/rust.nix index 1932c80..31c9b8e 100644 --- a/modules/home/darwin/env/rust.nix +++ b/modules/home/darwin/env/rust.nix @@ -1,5 +1,4 @@ { - pkgs, lib, config, ... @@ -14,8 +13,6 @@ in }; config = mkIf cfg.enable { - home.packages = with pkgs; [ rustup ]; - home.sessionVariables = { CARGO_HOME = "${config.home.sessionVariables.XDG_DATA_HOME}/cargo"; RUSTUP_HOME = "${config.home.sessionVariables.XDG_DATA_HOME}/rustup";