summary refs log tree commit diff
path: root/host/Rory-wsl/configuration.nix
diff options
context:
space:
mode:
authorEmma (Rory&) <root@rory.gay>2023-10-20 12:17:44 +0000
committerEmma (Rory&) <root@rory.gay>2023-10-20 12:17:44 +0000
commit77808fba90d751ae3e83d2f265c95507f5a32251 (patch)
tree95c6f4ebfe7ee0f688e135e5bf37efea1b387ef6 /host/Rory-wsl/configuration.nix
parentChanges (diff)
downloadRory-Open-Architecture-77808fba90d751ae3e83d2f265c95507f5a32251.tar.xz
Add firefox policy
Diffstat (limited to 'host/Rory-wsl/configuration.nix')
-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";
 }