feat: add vesktop module for desktop hosts by default
This commit is contained in:
parent
8371bd9f7d
commit
be29f1c4fb
34
modules/home/applications/vesktop.nix
Normal file
34
modules/home/applications/vesktop.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
let
|
||||||
|
inherit (lib) mkEnableOption mkIf;
|
||||||
|
cfg = config.ataraxia.programs.vesktop;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.ataraxia.programs.vesktop = {
|
||||||
|
enable = mkEnableOption "Enable vesktop program";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
programs.vesktop.enable = true;
|
||||||
|
programs.vesktop.settings = {
|
||||||
|
# appBadge = false;
|
||||||
|
# arRPC = true;
|
||||||
|
# checkUpdates = false;
|
||||||
|
# customTitleBar = false;
|
||||||
|
# disableMinSize = true;
|
||||||
|
minimizeToTray = true;
|
||||||
|
# tray = false;
|
||||||
|
# splashBackground = "#000000";
|
||||||
|
# splashColor = "#ffffff";
|
||||||
|
# splashTheming = true;
|
||||||
|
# staticTitle = true;
|
||||||
|
hardwareAcceleration = true;
|
||||||
|
discordBranch = "canary";
|
||||||
|
};
|
||||||
|
# programs.vesktop.vencord.settings = {};
|
||||||
|
# programs.vesktop.vencord.themes = {};
|
||||||
|
# programs.vesktop.vencord.useSystem = false;
|
||||||
|
|
||||||
|
persist.state.directories = [ ".config/vesktop" ];
|
||||||
|
};
|
||||||
|
}
|
@ -92,6 +92,7 @@ in
|
|||||||
ataraxia.programs.spotify.enable = mkDefault true;
|
ataraxia.programs.spotify.enable = mkDefault true;
|
||||||
ataraxia.programs.telegram.enable = mkDefault true;
|
ataraxia.programs.telegram.enable = mkDefault true;
|
||||||
ataraxia.programs.thunderbird.enable = mkDefault true;
|
ataraxia.programs.thunderbird.enable = mkDefault true;
|
||||||
|
ataraxia.programs.vesktop.enable = mkDefault true;
|
||||||
ataraxia.programs.vscode.enable = mkDefault true;
|
ataraxia.programs.vscode.enable = mkDefault true;
|
||||||
ataraxia.programs.walker.enable = mkDefault true;
|
ataraxia.programs.walker.enable = mkDefault true;
|
||||||
ataraxia.programs.zathura.enable = mkDefault true;
|
ataraxia.programs.zathura.enable = mkDefault true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user