From c763803fb4387485385ea006ccb6a442ea56f743 Mon Sep 17 00:00:00 2001 From: Wittano Bonarotti Date: Wed, 17 Jul 2024 23:39:28 +0200 Subject: [PATCH] chore(hosts/pc): added ides from fork to main PC configuration --- hosts/pc/configuration.nix | 2 +- modules/dev/ide.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/pc/configuration.nix b/hosts/pc/configuration.nix index 30e3a37d..affbfa06 100644 --- a/hosts/pc/configuration.nix +++ b/hosts/pc/configuration.nix @@ -34,7 +34,7 @@ games.enable = true; mihoyo.enable = true; }; - dev.lang.ides = [ "go" "sql" "haskell" "fork" ]; + dev.lang.ides = [ "go" "sql" "haskell" "fork" "jvm" "cpp" "rust" ]; hardware = { sound.enable = true; virtualization = { diff --git a/modules/dev/ide.nix b/modules/dev/ide.nix index 9e86bb40..6c255700 100644 --- a/modules/dev/ide.nix +++ b/modules/dev/ide.nix @@ -20,7 +20,7 @@ let haskell.extraConfig = { home-manager.users.wittano.home.packages = with unstable; [ zed-editor ]; }; - fork = { + fork.extraConfig = { home-manager.users.wittano.home.packages = with unstable; [ vscodium ]; }; });