!qol(restructure): heavy restructure

This commit is contained in:
2025-12-10 21:37:23 +00:00
parent b5c2089694
commit f1337d3edd
114 changed files with 2 additions and 360 deletions

0
modules/ytm/a Normal file
View File

4
modules/ytm/default.nix Normal file
View File

@@ -0,0 +1,4 @@
_: {
home = ./home.nix;
# nixos: ./nixos.nix;
}

17
modules/ytm/home.nix Normal file
View File

@@ -0,0 +1,17 @@
{
pkgs,
config,
lib,
...
}:
let
cfg = config.modules.youtube-music;
in
{
options.modules.youtube-music = {
enable = lib.mkEnableOption "youtube music";
};
config.home.packages = with pkgs; [
youtube-music
];
}