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 + ]; +}