diff --git a/hosts/nixos/home/partials/ghostty.nix b/hosts/nixos/home/partials/ghostty.nix deleted file mode 100644 index d9a4fe0..0000000 --- a/hosts/nixos/home/partials/ghostty.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ ... }: -{ - programs.ghostty = { - enable = true; - enableZshIntegration = true; - settings = { - background-opacity = 0.9; - keybind = [ - "performable:ctrl+c=copy_to_clipboard" - "performable:ctrl+v=paste_from_clipboard" - ]; - }; - }; -} diff --git a/hosts/nixos/home/partials/gnome/walls.jpg b/hosts/nixos/home/partials/gnome/walls.jpg deleted file mode 100644 index da36336..0000000 Binary files a/hosts/nixos/home/partials/gnome/walls.jpg and /dev/null differ diff --git a/hosts/nixos/home/users/alistreaza.nix b/hosts/nixos/home/users/alistreaza.nix index 7b6fa78..9c8255d 100644 --- a/hosts/nixos/home/users/alistreaza.nix +++ b/hosts/nixos/home/users/alistreaza.nix @@ -20,6 +20,9 @@ home.shell.git.enable = true; home.shell.neovim.enable = true; + # Terminal app + home.ghostty.enable = true; + # Code editor home.env.nix.enable = true; diff --git a/modules/home/darwin/devenv/jdk.nix b/modules/home/darwin/devenv/jdk.nix deleted file mode 100644 index 6cb9fa1..0000000 --- a/modules/home/darwin/devenv/jdk.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - pkgs, - lib, - config, - ... -}: -with lib; -let - cfg = config.home.env.jdk; -in -{ - options.home.env.jdk = { - enable = mkEnableOption "System nh service"; - }; - config = mkIf cfg.enable { - - home.packages = with pkgs; [ - jdk25_headless - ]; - - home.sessionVariables = { - JAVA_HOME = "${pkgs.jdk25_headless}"; - M2_HOME = "${config.home.sessionVariables.XDG_DATA_HOME}/m2"; - }; - - }; -} diff --git a/modules/home/darwin/devenv/python.nix b/modules/home/darwin/devenv/python.nix deleted file mode 100644 index 914afd7..0000000 --- a/modules/home/darwin/devenv/python.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ - pkgs, - lib, - config, - ... -}: -with lib; -let - cfg = config.home.env.python; -in -{ - options.home.env.python = { - enable = mkEnableOption "System nh service"; - }; - config = mkIf cfg.enable { - - home.packages = with pkgs; [ - uv - ]; - - }; -} diff --git a/modules/home/darwin/devenv/rust.nix b/modules/home/darwin/devenv/rust.nix deleted file mode 100644 index 5ae522d..0000000 --- a/modules/home/darwin/devenv/rust.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - pkgs, - lib, - config, - ... -}: -with lib; -let - cfg = config.home.env.rust; -in -{ - options.home.env.rust = { - enable = mkEnableOption "System nh service"; - }; - 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"; - }; - - }; -} diff --git a/modules/home/nixos/ghostty.nix b/modules/home/nixos/ghostty.nix new file mode 100644 index 0000000..8d4ed93 --- /dev/null +++ b/modules/home/nixos/ghostty.nix @@ -0,0 +1,25 @@ +{ lib, config, ... }: +with lib; +let + cfg = config.home.ghostty; +in +{ + options.home.ghostty = { + enable = mkEnableOption "Xdg service"; + }; + config = mkIf cfg.enable { + + programs.ghostty = { + enable = true; + enableZshIntegration = true; + settings = { + background-opacity = 0.9; + keybind = [ + "performable:ctrl+c=copy_to_clipboard" + "performable:ctrl+v=paste_from_clipboard" + ]; + }; + }; + + }; +}