From 57f811abc7a4cbdf4665507e3711c09924123485 Mon Sep 17 00:00:00 2001 From: derped Date: Thu, 5 Sep 2019 15:20:56 +0200 Subject: [PATCH] Don't use types.string. --- options/machine.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/options/machine.nix b/options/machine.nix index c78e1f0..a2e29cc 100644 --- a/options/machine.nix +++ b/options/machine.nix @@ -11,19 +11,19 @@ with lib; ''; }; pkgs = mkOption { - type = types.listOf types.string; + type = types.listOf types.str; description = '' The list of metapackages to be installed. ''; }; services = mkOption { - type = types.listOf types.string; + type = types.listOf types.str; description = '' List of services to be enabled. ''; }; conffiles = mkOption { - type = types.listOf types.string; + type = types.listOf types.str; description = '' List of configuration files to be enabled. ''; @@ -35,7 +35,7 @@ with lib; ''; }; secretPath = mkOption { - type = types.string; + type = types.str; default = "/secret"; description = '' Path to you systems secret folder containing files with sensitive information. @@ -67,7 +67,7 @@ with lib; ''; }; desktop.wms = mkOption { - type = types.listOf types.string; + type = types.listOf types.str; default = []; description = '' The list of wms to be enabled.