nichts/modules/gui/spicetify.nix

13 lines
497 B
Nix
Raw Normal View History

2024-05-14 00:54:35 +02:00
{ config, pkgs, lib, inputs, ... }:
with lib;
let
cfg = config.modules.programs.spicetify;
username = config.modules.other.system.username;
#inherit (inputs.spicetify-nix.packages.${pkgs.system}.default) spicePkgs;
inherit (inputs.spicetify-nix.packages.${pkgs.system}) spicetify-nix;
2024-05-14 00:54:35 +02:00
in {
options.modules.programs.spicetify.enable = mkEnableOption "spicetify";
imports = [ spicetify-nix.homeManagerModule ];
config = mkIf cfg.enable { programs.spicetify = { enable = true; }; };
2024-05-14 00:54:35 +02:00
}