diff options
| -rw-r--r-- | README.org | 27 |
1 files changed, 17 insertions, 10 deletions
| @@ -265,19 +265,26 @@ variable =%my-os=: | |||
| 265 | (operating-system ...)) | 265 | (operating-system ...)) |
| 266 | #+END_SRC | 266 | #+END_SRC |
| 267 | 267 | ||
| 268 | No arguments are required for headless and Wayland environments: | 268 | - Headless environmnet: disable =#:kernel-mode-setting?=: |
| 269 | 269 | ||
| 270 | #+begin_src scheme | 270 | #+begin_src scheme |
| 271 | ((nonguix-transformation-nvidia) | 271 | ((nonguix-transformation-nvidia #:kernel-mode-setting? #f) |
| 272 | %my-os) | 272 | %my-os) |
| 273 | #+end_src | 273 | #+end_src |
| 274 | 274 | ||
| 275 | For Xorg environmnets, set =#:configure-xorg?= argument to =#t=: | 275 | - Pure-Wayland environmnet: no argument required: |
| 276 | 276 | ||
| 277 | #+begin_src scheme | 277 | #+begin_src scheme |
| 278 | ((nonguix-transformation-nvidia #:configure-xorg? #t) | 278 | ((nonguix-transformation-nvidia) |
| 279 | %my-os) | 279 | %my-os) |
| 280 | #+end_src | 280 | #+end_src |
| 281 | |||
| 282 | - Xorg environmnet: =#:configure-xorg?=: | ||
| 283 | |||
| 284 | #+begin_src scheme | ||
| 285 | ((nonguix-transformation-nvidia #:configure-xorg? #t) | ||
| 286 | %my-os) | ||
| 287 | #+end_src | ||
| 281 | 288 | ||
| 282 | Full example below, using =compose= so that other system transformations can be | 289 | Full example below, using =compose= so that other system transformations can be |
| 283 | mixed in: | 290 | mixed in: |
