10 lines
149 B
Nix
10 lines
149 B
Nix
|
{ user, ... }:
|
||
|
{
|
||
|
|
||
|
home-manager.users.${user}.programs.cmus = {
|
||
|
enable = true;
|
||
|
# TODO shades of purple theme here
|
||
|
# extraConfig
|
||
|
};
|
||
|
}
|