From 817741c49f09447c4ad3c07927473c0b17ee904e Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 11 Sep 2023 08:49:24 -0400 Subject: [PATCH] global/options: remove unnecessary types usage --- modules/global/options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/global/options.nix b/modules/global/options.nix index d0e5f77..cfabc37 100644 --- a/modules/global/options.nix +++ b/modules/global/options.nix @@ -23,7 +23,7 @@ in info = { monitors = mkOpt int 1; graphical = mkBoolOpt config.services.xserver.enable; - model = mkOpt types.str "A Computer"; + model = mkOpt str "A Computer"; env = { wm = mkInfoOpt; };