mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
d85bf67c48
Before it was not possible to place setting values outside the `General` section.
26 lines
529 B
Nix
26 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"
|
|
''
|
|
}
|
|
'';
|
|
}
|