mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
09a0c0c029
PR #5951
20 lines
310 B
Nix
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
|
|
''
|
|
}
|
|
'';
|
|
}
|