From 9d1f039387effa25e8db4f49722078ad9e0c598f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 29 Jun 2023 04:46:04 +0000 Subject: [PATCH] [NixOS] Properly set type of dotfiles-directory --- nixos/environment.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/environment.nix b/nixos/environment.nix index a0771119..2bd4b3e8 100644 --- a/nixos/environment.nix +++ b/nixos/environment.nix @@ -3,7 +3,7 @@ with lib; { options = { dotfiles-directory = mkOption { - type = types.str; + type = types.path; default = ../.; }; };