Sakooooo
14fe6d9470
All checks were successful
ci/woodpecker/cron/flake-update Pipeline was successful
13 lines
319 B
Nix
13 lines
319 B
Nix
{ outputs, options, config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.modules.desktop.chat.discord;
|
|
hyprland = config.modules.desktop.hyprland;
|
|
in {
|
|
options.modules.desktop.chat.discord = { enable = lib.mkEnableOption false; };
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
users.users.sako.packages = [ pkgs.vesktop ];
|
|
|
|
};
|
|
}
|