You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-t,--timeout ARG Timeout in seconds for the conversion
127
129
process (default: 5)
130
+
-e,--emoji Enable emoji support (adds a bit of overhead)
128
131
--verbose Verbose mode (debug)
129
132
```
130
133
@@ -149,6 +152,26 @@ This will generate an output similar to the one below.
149
152
}
150
153
```
151
154
155
+
#### Emoji support
156
+
157
+
Emojis are supported since version `0.0.12`, and it needs to be explicitly enabled, as these add a little parsing overhead via the [emojis](https://hackage.haskell.org/package/emojis) package.
Failing to pass the `--emoji` flag will result in a timeout error.
174
+
152
175
### Supported types
153
176
154
177
For now, only types supported by Home Manager as specified [here](https://github.com/rycee/home-manager/blob/master/modules/lib/gvariant.nix) are supported. If there's enough interest, we might be able to work on supporting the [full specification](https://developer.gnome.org/glib/stable/gvariant-text.html).
@@ -182,48 +205,19 @@ If you are using the Home Manager module for NixOS you can import it like so:
182
205
183
206
### Installation
184
207
185
-
The simplest way is to install it via `nix-env`.
208
+
`dconf2nix` is available on [nixpkgs](https://github.com/NixOS/nixpkgs) and can be installed as any other package. It can also be used without installing. For example, with flakes.
You can then run: `dconf dump / | ./d2n_util.sh -t` to create the sections and automaticaly test them. When creating a issue include both, the sections which failed the test and the errors from "d2n.log". For more options run `./d2n_util.sh -h`
234
+
You can then run: `dconf dump / | ./d2n_util.sh -t` to create the sections and automatically test them. When creating a issue include both, the sections which failed the test and the errors from "d2n.log". For more options run `./d2n_util.sh -h`
241
235
242
236
Do also consider the caveats mentioned above in the [Supported Types](#supported-types) section.
0 commit comments