From 11ec444ec77ec913d0aff34b19a58bb0308904f7 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 9 Jun 2022 09:03:40 -0700 Subject: ref(multimedia): move multimedia modules to hosts Consume the modules related to multimedia applications at the host level, instead of having a level of indirection with a profile. Change-Id: I567f0e01cbfe591beaa2e9086e33434402a4a002 Reviewed-on: https://cl.fcuny.net/c/world/+/292 Reviewed-by: Franck Cuny --- profiles/default.nix | 2 +- profiles/multimedia/default.nix | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 profiles/multimedia/default.nix (limited to 'profiles') diff --git a/profiles/default.nix b/profiles/default.nix index df86fe6..059b945 100644 --- a/profiles/default.nix +++ b/profiles/default.nix @@ -1 +1 @@ -{ ... }: { imports = [ ./gtk ./trusted ./wm ./desktop ./multimedia ]; } +{ ... }: { imports = [ ./gtk ./trusted ./wm ./desktop ]; } diff --git a/profiles/multimedia/default.nix b/profiles/multimedia/default.nix deleted file mode 100644 index 4c1d3fe..0000000 --- a/profiles/multimedia/default.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ config, lib, ... }: -let cfg = config.my.profiles.multimedia; -in { - options.my.profiles.multimedia = with lib; { - enable = mkEnableOption "multimedia profile"; - }; - config = lib.mkIf cfg.enable { - my.home.vlc.enable = true; - my.home.mpv.enable = true; - my.home.sublime-music.enable = true; - }; -} -- cgit v1.2.3