remove: vesktop hm module, moved to another repo

This commit is contained in:
ooks-io 2024-01-29 11:21:49 +13:00
parent 653640b484
commit 2c0ab4df6c

View file

@ -1,33 +0,0 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.vesktop;
package = pkgs.vesktop;
in {
options = {
programs.vesktop = {
enable = mkEnableOption
"vesktop, a custom client for discord";
theme = mkOption {
type = types.str;
default = "";
description = "Custom css theme for vesktop";
};
settings = mkOption {
type = types.attrs;
default = {};
description = "Vesktop settings.";
};
};
config = mkIf cfg.enable {
home.pakages = [ package ];
xdg.configFile."vesktop/theme/custom.css".text = cfg.theme;
};
};
}