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

33 lines
728 B
Nix

{
home.stateVersion = "21.11";
programs.pet = {
enable = true;
settings = {
General = {
backend = "Gitlab";
editor = "nvim";
};
Gitlab = {
access_token = "1234";
file_name = "pet-snippets.toml";
visibility = "public";
};
};
};
nmt.script = ''
assertFileContent home-files/.config/pet/config.toml \
${builtins.toFile "pet-settings.toml" ''
[General]
backend = "Gitlab"
editor = "nvim"
selectcmd = "fzf"
snippetfile = "/home/hm-user/.config/pet/snippet.toml"
[Gitlab]
access_token = "1234"
file_name = "pet-snippets.toml"
visibility = "public"
''}
'';
}