1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 04:43:28 +02:00
home-manager/tests/modules/programs/pet/settings_21_05.nix
Mmequignon d85bf67c48
pet: fix settings format issue
Before it was not possible to place setting values outside the
`General` section.
2021-11-17 23:42:21 +01:00

27 lines
529 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
home.stateVersion = "21.05";
programs.pet = {
enable = true;
selectcmdPackage = config.lib.test.mkStubPackage { };
settings.editor = "nvim";
};
test.stubs.pet = { };
nmt.script = ''
assertFileContent home-files/.config/pet/config.toml \
${
builtins.toFile "pet-settings.toml" ''
[General]
editor = "nvim"
selectcmd = "fzf"
snippetfile = "/home/hm-user/.config/pet/snippet.toml"
''
}
'';
}