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