nixos-config/programs/desktop/audacious.nix

8 lines
135 B
Nix
Raw Normal View History

2024-11-09 14:02:26 +00:00
{ pkgs, ... }:
{
home.packages = with pkgs; [ audacious ];
2024-11-09 13:34:14 +00:00
home.persistence.default.directories = [
2024-11-09 13:12:59 +00:00
".config/audacious"
];
2024-11-09 07:24:50 +00:00
}