From c8edf5767c507766b20e394bcc2e4fd6141a64e1 Mon Sep 17 00:00:00 2001 From: Elec3137 Date: Fri, 27 Feb 2026 09:57:27 -0800 Subject: [PATCH] sort options in flake example --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ac2555b..521b69d 100644 --- a/README.md +++ b/README.md @@ -68,11 +68,17 @@ nixowos.cli.yt-dlp.extraConfig = "--extract-audio"; "${nixowos}/default.nix" { - nixowos.enable = true; - nixowos.graphical.enable = true; - nixowos.graphical.games.enable = true; - nixowos.graphical.plasma.startOnFirstTTY = true; - nixowos.graphical.jp.enable = true; + nixowos = { + enable = true; + + graphical = { + enable = true; + games.enable = true; + plasma.startOnFirstTTY = true; + jp.enable = true; + mpv.useFullFFmpeg = true; + }; + }; } ]; };