12 lines
182 B
Nix
12 lines
182 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
cmus
|
|
];
|
|
home.file.".config/cmus/rc".source = ./rc;
|
|
# home.file.".config/cmus/autosave".source = ./autosave;
|
|
}
|