Skip to content

Commit 8a7a179

Browse files
chore: minor doc update
1 parent 1ea2938 commit 8a7a179

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ Anything Maxwell or newer should work, but generation support has not yet been t
8888

8989
There is a configuration file available in `/etc/lact/config.yaml`. Most of the settings are accessible through the GUI, but some of them may be useful to be edited manually (like `admin_groups` to specify who has access to the daemon)
9090

91+
See [CONFIG.md](./docs/CONFIG.md) for more information.
92+
9193
**Socket permissions setup:**
9294

9395
By default, LACT uses either ether the `wheel` or `sudo` group (whichever is available) for the ownership of the unix socket that the GUI needs to connect to.

docs/CONFIG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ gpus:
109109
# Setting this requires `performance_level` to be set to `manual`.
110110
power_profile_mode_index: 0
111111
# Custom heuristic values when using the custom AMD power profile mode.
112-
# The meaning of these values depends on the specific GPU model.
112+
# The meaning of these values, their format and count depend on the specific GPU model.
113113
# Check the names of these values in the UI.
114114
custom_power_profile_mode_hueristics:
115115
- - 0

lact-daemon/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ mod tests {
409409
+ example_config_start;
410410
let example_config = &doc[example_config_start..example_config_end];
411411

412-
let deserialized_config: Config = serde_yaml::from_str(&example_config).unwrap();
412+
let deserialized_config: Config = serde_yaml::from_str(example_config).unwrap();
413413
assert_yaml_snapshot!(deserialized_config);
414414
}
415415

0 commit comments

Comments
 (0)