From 857bb5dba366d5089c46c64ce74a1e5ea9d17130 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Sun, 12 Oct 2025 15:50:57 +0100 Subject: [PATCH] feat(youtube music): added youtube music --- nix/home.nix | 1 + nix/modules/ytm/home.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 nix/modules/ytm/home.nix diff --git a/nix/home.nix b/nix/home.nix index b1a1149..28bb3fd 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -20,6 +20,7 @@ ./modules/obs/home.nix ./modules/blender/home.nix ./modules/fish/home.nix + ./modules/ytm/home.nix ./overlays.nix ]; # Home Manager needs a bit of information about you and the paths it should diff --git a/nix/modules/ytm/home.nix b/nix/modules/ytm/home.nix new file mode 100644 index 0000000..e1596b3 --- /dev/null +++ b/nix/modules/ytm/home.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + youtube-music + ]; +}