From 2f653b95ce8a0a0a87eecfc65c3cd4962c109bb5 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 14 Jun 2026 12:43:31 -0500 Subject: [PATCH] added websockets --- modules/features/nixos-base.nix | 4 ++-- modules/features/noctalia.nix | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/features/nixos-base.nix b/modules/features/nixos-base.nix index c0ae6d0..01e3689 100644 --- a/modules/features/nixos-base.nix +++ b/modules/features/nixos-base.nix @@ -1,5 +1,5 @@ { self, inputs, ... }: { - flake.modules.nixos.base = { + flake.modules.nixos.base = { config, pkgs, lib, ... }: { nix.settings.experimental-features = [ "nix-command" "flakes" ]; nixpkgs.config = { permittedInsecurePackages = [ "openssl-1.1.1w" ]; @@ -38,5 +38,5 @@ networking.networkmanager.enable = true; services.openssh.enable = true; - } + }; } \ No newline at end of file diff --git a/modules/features/noctalia.nix b/modules/features/noctalia.nix index 54439c7..44aa14e 100644 --- a/modules/features/noctalia.nix +++ b/modules/features/noctalia.nix @@ -4,6 +4,9 @@ nixGLPackage = inputs.nixgl.packages.${pkgs.stdenv.hostPlatform.system}.nixGLIntel; myNoctaliaUnwrapped = inputs.wrapper-modules.wrappers.noctalia-shell.wrap { inherit pkgs; + runtimePkgs = [ + pkgs.qt6.qtwebsockets + ]; # settings = # (builtins.fromJSON # (builtins.readFile ./noctalia.json)).settings;