diff --git a/flake.nix b/flake.nix index d7e5767..88294a1 100644 --- a/flake.nix +++ b/flake.nix @@ -9,7 +9,7 @@ ./modules/audio.nix ./modules/font.nix ./modules/nix-settings.nix - ./modules/graphics.nix + ./modules/nvidia.nix ./modules/services.nix ./modules/vim.nix ./modules/xconfig.nix diff --git a/modules/graphics.nix b/modules/graphics.nix deleted file mode 100644 index 04d340b..0000000 --- a/modules/graphics.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ lib, config, ... }: -with lib; -let cfg = config.voidcruiser.graphics; -in { - options.voidcruiser.graphics ={ - defaultSettings.enable = mkEnableOption "Enables some basic graphical settings"; - nvidia = { - enable = mkEnableOption "Enables Nvidia settings"; - proprietaryDrivers = mkEnableOption "Enables proprietary drivers"; - }; - }; - config = { - hardware = { - opengl = { - enable = true; - driSupport = true; - driSupport32Bit = true; - }; - nvidia = mkIf cfg.nvidia.enable { - package = config.boot.kernelPackages.nvidiaPackages.stable; - powerManagement = { - enable = false; - finegrained = false; - }; - open = !cfg.nvidia.proprietaryDrivers; - nvidiaSettings = cfg.nvidia.proprietaryDrivers; - }; - }; - services.xserver.videoDrivers = mkIf cfg.nvidia.proprietaryDrivers ["nvidia"]; - }; -} diff --git a/modules/nvidia.nix b/modules/nvidia.nix new file mode 100644 index 0000000..f9a87a9 --- /dev/null +++ b/modules/nvidia.nix @@ -0,0 +1,27 @@ +{ lib, config, ... }: +with lib; +let cfg = config.voidcruiser.nvidia; +in { + options.voidcruiser.nvidia = { + enable = mkEnableOption "Enables proprietary Nvidia drivers and related config"; + }; + config = mkIf cfg.enable { + hardware = { + opengl = { + enable = true; + driSupport = true; + driSupport32Bit = true; + }; + nvidia = { + package = config.boot.kernelPackages.nvidiaPackages.stable; + powerManagement = { + enable = false; + finegrained = false; + }; + open = false; + nvidiaSettings = true; + }; + }; + services.xserver.videoDrivers = ["nvidia"]; + }; +}