1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-22 13:07:26 +02:00
home-manager/tests/modules/programs/cmus/cmus.nix

21 lines
310 B
Nix
Raw Normal View History

2024-10-10 00:08:02 +02:00
{ ... }:
{
programs.cmus = {
enable = true;
theme = "gruvbox";
extraConfig = "test";
};
nmt.script = ''
assertFileContent \
home-files/.config/cmus/rc \
${
builtins.toFile "cmus-expected-rc" ''
colorscheme gruvbox
test
''
}
'';
}