diff --git a/flake.nix b/flake.nix index 1a0134d..cb6b639 100644 --- a/flake.nix +++ b/flake.nix @@ -52,12 +52,13 @@ }; lix-module = { - url = "https://git.lix.systems/lix-project/nixos-module/archive/main.tar.gz"; + url = "https://git.lix.systems/lix-project/nixos-module/archive/2.93.2-1.tar.gz"; inputs.nixpkgs.follows = "nixpkgsUnstable"; inputs.lix.follows = "lix"; }; musnix = { url = "github:musnix/musnix"; + inputs.nixpkgs.follows = "nixpkgsUnstable"; }; moonlight = { url = "github:moonlight-mod/moonlight/develop"; # Add `/develop` to the flake URL to use nightly. @@ -119,7 +120,7 @@ specialArgs = specialArgs; modules = [ ./hosts/goober/configuration.nix - lix-module.nixosModules.default + # lix-module.nixosModules.default nix-flatpak.nixosModules.nix-flatpak musnix.nixosModules.musnix catppuccin.nixosModules.catppuccin diff --git a/hosts/goober/hardware-configuration.nix b/hosts/goober/hardware-configuration.nix index f7c0f20..8361a76 100644 --- a/hosts/goober/hardware-configuration.nix +++ b/hosts/goober/hardware-configuration.nix @@ -27,7 +27,7 @@ "kvm-intel" "wl" ]; - boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ]; + # boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ]; fileSystems."/" = { device = "/dev/disk/by-uuid/4efbf111-4cbb-4e1e-b3ee-dc3fca1f6f4a"; diff --git a/shared/isos/goober.nix b/shared/isos/goober.nix index e8165ee..3d69539 100644 --- a/shared/isos/goober.nix +++ b/shared/isos/goober.nix @@ -48,10 +48,9 @@ pkg: builtins.elem (lib.getName pkg) [ "nvidia" - "broadcom-sta" ]; - boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ]; + boot.extraModulePackages = [ ]; environment.systemPackages = with pkgs; [ # Add your own packages here neovim @@ -68,7 +67,7 @@ # Nvidia power management. Experimental, and can cause sleep/suspend to fail. # Enable this if you have graphical corruption issues or application crashes after waking - # up from sleep. This fixes it by saving the entire VRAM memory to /tmp/ instead + # up from sleep. This fixes it by saving the entire VRAM memory to /tmp/ instead # of just the bare essentials. powerManagement.enable = false; @@ -78,9 +77,9 @@ # Use the NVidia open source kernel module (not to be confused with the # independent third-party "nouveau" open source driver). - # Support is limited to the Turing and later architectures. Full list of - # supported GPUs is at: - # https://github.com/NVIDIA/open-gpu-kernel-modules#compatible-gpus + # Support is limited to the Turing and later architectures. Full list of + # supported GPUs is at: + # https://github.com/NVIDIA/open-gpu-kernel-modules#compatible-gpus # Only available from driver 515.43.04+ # Currently "beta quality", so false is currently the recommended setting. open = false;