summary refs log tree commit diff
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rw-r--r--host/Rory-wsl/configuration.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/host/Rory-wsl/configuration.nix b/host/Rory-wsl/configuration.nix
index f18b918..86a9562 100644
--- a/host/Rory-wsl/configuration.nix
+++ b/host/Rory-wsl/configuration.nix
@@ -4,6 +4,7 @@
   imports = [
     ../../modules/base-client.nix
     ../../modules/software-templates/profilers.nix
+    ../../modules/software-templates/dotnet.client.nix
   ];
   wsl = {
     enable = true;
@@ -46,9 +47,20 @@
     vimPlugins.vim-nix
     neovim
     tree
+    
+    vscode
+    temurin-bin
     (callPackage ../../modules/packages/nheko-git.nix { inherit nhekoSrc; inherit mtxclientSrc; })
   ];
 
+  programs.firefox = {
+    enable = true;
+    package = pkgs.firefox-devedition;
+    #preferencesStatus = "default";
+    wrapperConfig.speechSynthesisSupport = false;
+  };
+
+
   system.stateVersion = "23.05";
   home-manager.users.Rory.home.stateVersion = lib.mkForce "23.05";
 }