about summary refs log tree commit diff
path: root/profiles
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--profiles/default.nix2
-rw-r--r--profiles/multimedia/default.nix12
2 files changed, 1 insertions, 13 deletions
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;
-  };
-}