Music apps
This commit is contained in:
parent
12a513eb2f
commit
f4004b2772
3 changed files with 24 additions and 1 deletions
22
homes/x86_64-linux/kylekrein/music.nix
Normal file
22
homes/x86_64-linux/kylekrein/music.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
osConfig,
|
||||
...
|
||||
}: let
|
||||
impermanence = config.custom.impermanence;
|
||||
in {
|
||||
config = lib.optionals osConfig.custom.presets.wayland.enable {
|
||||
home.packages = with pkgs; [
|
||||
lrcget
|
||||
picard
|
||||
beets
|
||||
];
|
||||
home.persistence = lib.mkIf impermanence.enable {
|
||||
"${impermanence.persistentStorage}".directories = [
|
||||
".config/MusicBrainz"
|
||||
".config/beets"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue