aboutsummaryrefslogtreecommitdiff
path: root/home/sublime-music/default.nix
blob: 93b5c98af20fe04baaf04c4e09996a68e3232411 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, config, ... }:
let cfg = config.my.home.sublime-music;
in {
  options.my.home.sublime-music = with lib; {
    enable = mkEnableOption "sublime-music configuration";
  };

  config =
    lib.mkIf cfg.enable { home.packages = with pkgs; [ sublime-music ]; };
}