2.home-manager/tests/modules/programs/pet/settings_21_05.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

17 lines
380 B
Nix

{
home.stateVersion = "21.05";
programs.pet = {
enable = true;
settings.editor = "nvim";
};
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"
''}
'';
}