# nixos-config - My current NixOS configuration # # Copyright (C) 2025 Benedikt Peetz # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of my nixos-config. # # You should have received a copy of the License along with this program. # If not, see . {mkTest, ...}: mkTest { name = "less"; configuration = { imports = [ ../../../../modules/by-name/le/less/module.nix ]; config.soispha.programs.less.enable = true; }; testData = { "data/test.file" = ./data/test.file; }; description = ./test.desc; # FIXME: Currently the golden file is not reproducible. <2024-11-22> hash = null; # hash = "87901231393b51cdd45bbb4339a32db2894a3a5ab164cb5c7a8fa14721fdcba7"; }