1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-07-01 22:35:15 +02:00
parent 2ba2f3c6ff
commit c1893dd388
No known key found for this signature in database

View file

@ -0,0 +1,16 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.profiles.desktop;
in
{
config = lib.mkIf cfg.enable {
environment.systemPackages = [
pkgs.spotify
];
};
}