拆分 Home Manager 程序配置

This commit is contained in:
2026-05-30 22:55:47 +08:00
parent 66f91f8506
commit 272d6402ad
7 changed files with 116 additions and 95 deletions
+14
View File
@@ -0,0 +1,14 @@
{ pkgs, inputs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
in
{
programs.spicetify = {
enable = true;
enabledCustomApps = with spicePkgs.apps; [
marketplace
];
};
}