removed unused option

This commit is contained in:
twoneis 2024-05-10 20:22:40 +02:00
parent 0f797c956f
commit 82d672ddb4
3 changed files with 1 additions and 4 deletions

View file

@ -1,6 +1,5 @@
{ ... }: { { ... }: {
minimal = false; minimal = false;
full = true;
withAudio = true; withAudio = true;
withBluetooth = true; withBluetooth = true;

View file

@ -1,6 +1,5 @@
{ ... }: { { ... }: {
minimal = false; minimal = false;
full = true;
withAudio = true; withAudio = true;
withBluetooth = true; withBluetooth = true;

View file

@ -1,9 +1,8 @@
{ lib, ... }: { { lib, ... }: {
options = with lib; { options = with lib; {
minimal = mkEnableOption "Minimal setup with only cli utilities"; minimal = mkEnableOption "Minimal setup with only cli utilities";
full = mkEnableOption "Full setup with all programs and themes";
withAudio = mkEnableOption "Enable support for audio"; withAudio = mkEnableOption "Enable support for audio";
withBluetooth = mkEnableOption "Enable bluetooth"; withBluetooth = mkEnableOption "Enable bluetooth";
withNvidia = mkEnableOption "Enable proprietary nvidia drivers"; withNvidia = mkEnableOption "Enable proprietary nvidia drivers";