diff --git a/modules/home-manager/files/mutable-files.nix b/modules/home-manager/files/mutable-files.nix index 2990f127..bba54d47 100644 --- a/modules/home-manager/files/mutable-files.nix +++ b/modules/home-manager/files/mutable-files.nix @@ -92,19 +92,17 @@ in missing. ''; default = { }; - example = lib.literalExpression '' - { - "library/dotfiles" = { - url = "https://github.com/foo-dogsquared/dotfiles.git"; - type = "git"; - }; + example = { + "library/dotfiles" = { + url = "https://github.com/foo-dogsquared/dotfiles.git"; + type = "git"; + }; - "library/projects/keys" = { - url = "https://example.com/file.zip"; - type = "archive"; - }; - } - ''; + "library/projects/keys" = { + url = "https://example.com/file.zip"; + type = "archive"; + }; + }; }; config = lib.mkIf (cfg != { }) {