From 1125aaa49aec6a220fd3b9d03076fec398b35a14 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 9 Apr 2022 09:42:03 -0700 Subject: add a few more modules to home/ and delete stuff --- home/sublime-music/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 home/sublime-music/default.nix (limited to 'home/sublime-music') diff --git a/home/sublime-music/default.nix b/home/sublime-music/default.nix new file mode 100644 index 0000000..93b5c98 --- /dev/null +++ b/home/sublime-music/default.nix @@ -0,0 +1,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 ]; }; +} -- cgit 1.4.1