2 files changed, 0 insertions, 122 deletions
diff --git a/flake.nix b/flake.nix
index 83f1d3e..636bff9 100755
--- a/flake.nix
+++ b/flake.nix
@@ -40,7 +40,6 @@
grapevine.url = "gitlab:matrix/grapevine-fork?host=gitlab.computer.surgery"; # &ref=benjamin/debug-emma-kde-room";
conduit.url = "gitlab:famedly/conduit/next";
#conduwuit.url = "github:girlbossceo/conduwuit";
- nixos-wsl.url = "github:nix-community/NixOS-WSL";
# - AUR imports
# aur-visual-paradigm = {
# url = "git+https://aur.archlinux.org/visual-paradigm.git";
@@ -386,22 +385,6 @@
];
};
- #WSL
- Rory-wsl = nixpkgs.lib.nixosSystem {
- system = "x86_64-linux";
- modules = [
- nixos-wsl.nixosModules.default
- ./host/Rory-wsl/configuration.nix
- # ./hardware-configuration.nix
- home-manager.nixosModules.home-manager
- #nur.nixosModules.nur
- ];
- specialArgs = {
- inherit (inputs) mtxclientSrc;
- inherit (inputs) nhekoSrc;
- };
- };
-
# ISO images
uISO = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
diff --git a/host/Rory-wsl/configuration.nix b/host/Rory-wsl/configuration.nix
deleted file mode 100644
index 9911991..0000000
--- a/host/Rory-wsl/configuration.nix
+++ /dev/null
@@ -1,105 +0,0 @@
-{
- lib,
- pkgs,
- nhekoSrc,
- mtxclientSrc,
- ...
-}:
-
-{
- imports = [
- ../../modules/base-client.nix
- # ../../modules/software-templates/profilers.nix
- # ../../modules/software-templates/dotnet.client.nix
- ];
- wsl = {
- enable = true;
- automountPath = "/mnt";
- #defaultUser = "nixos";
- defaultUser = "Rory";
- startMenuLaunchers = true;
-
- # Fix binfmt registration
- interop.register = true;
-
- # Enable native Docker support
- # docker-native.enable = true;
-
- # Enable integration with Docker Desktop (needs to be installed)
- # docker-desktop.enable = true;
-
- };
- networking.hostName = "Rory-wsl";
- users.users.Rory.uid = 1000;
-
- environment.systemPackages = with pkgs; [
- gnome-console
- feh
- easyeffects
- kitty
- # youtube-music
- nemo
- file-roller
-
- # - IDEs
- # jetbrains-toolbox
- # jetbrains.rider
- # github-copilot-intellij-agent
-
- # dbeaver
- # insomnia
- # vscode
- # discord
-
- # - Languages
- #dotnet-sdk_7
- #dotnet-sdk_8
- # (callPackage ../../packages/dotnet-pack.nix { inherit pkgs; })
-
- # temurin-bin
- # obsidian
- # ungoogled-chromium #needed for Rider in order to debug WASM
- # peek
-
- unrar-wrapper
-
- #(schildichat-desktop.override { electron = electron; })
- (callPackage ../../packages/nheko-git.nix {
- inherit nhekoSrc;
- inherit mtxclientSrc;
- })
- # steam-run
- ];
-
- programs.firefox = {
- enable = true;
- package = pkgs.firefox-devedition;
- #preferencesStatus = "default";
- wrapperConfig.speechSynthesisSupport = false;
- };
-
- fonts = {
- fonts = with pkgs; [
- (nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
- noto-fonts-monochrome-emoji
- ];
- # fontconfig.defaultFonts.monospace = with pkgs; [
- # "JetBrainsMonoNL Nerd Font,JetBrainsMonoNL NF:style=Regular"
- # ];
- # fontconfig.defaultFonts.sansSerif = with pkgs; [
- # "JetBrainsMonoNL Nerd Font,JetBrainsMonoNL NF:style=Regular"
- # ];
- # fontconfig.defaultFonts.serif = with pkgs; [
- # "JetBrainsMonoNL Nerd Font,JetBrainsMonoNL NF:style=Regular"
- # ];
- fontconfig.defaultFonts.emoji = with pkgs; [ "freefont" ];
- enableDefaultPackages = lib.mkForce false;
- enableGhostscriptFonts = lib.mkForce false;
- };
-
- programs.dconf.enable = true;
-
- system.stateVersion = "23.05";
- nixpkgs.config.permittedInsecurePackages = [ "electron-25.9.0" ];
- home-manager.users.Rory.home.stateVersion = lib.mkForce "23.05";
-}
|