sort options in flake example
This commit is contained in:
parent
738362adfd
commit
c8edf5767c
1 changed files with 11 additions and 5 deletions
16
README.md
16
README.md
|
|
@ -68,11 +68,17 @@ nixowos.cli.yt-dlp.extraConfig = "--extract-audio";
|
||||||
|
|
||||||
"${nixowos}/default.nix"
|
"${nixowos}/default.nix"
|
||||||
{
|
{
|
||||||
nixowos.enable = true;
|
nixowos = {
|
||||||
nixowos.graphical.enable = true;
|
enable = true;
|
||||||
nixowos.graphical.games.enable = true;
|
|
||||||
nixowos.graphical.plasma.startOnFirstTTY = true;
|
graphical = {
|
||||||
nixowos.graphical.jp.enable = true;
|
enable = true;
|
||||||
|
games.enable = true;
|
||||||
|
plasma.startOnFirstTTY = true;
|
||||||
|
jp.enable = true;
|
||||||
|
mpv.useFullFFmpeg = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue