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
2024-10-18 16:03:33 +02:00

20 lines
310 B
Nix

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