Skip to content

Commit

Permalink
process-compose: mark default settings
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Oct 7, 2024
1 parent 1502a9f commit beee32b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/process-managers/process-compose.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ in
enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Enable the TUI";
description = "Enable the TUI (Terminal User Interface)";
};
};

Expand Down Expand Up @@ -96,8 +96,8 @@ in
process.managers.process-compose = {
configFile = lib.mkDefault (settingsFormat.generate "process-compose.yaml" cfg.settings);
settings = {
version = "0.5";
is_strict = true;
version = lib.mkDefault "0.5";
is_strict = lib.mkDefault true;
environment = lib.mapAttrsToList
(name: value: "${name}=${toString value}")
config.env;
Expand Down

0 comments on commit beee32b

Please sign in to comment.