delete discord

This commit is contained in:
Sakooooo 2023-08-30 19:13:17 +04:00
parent 5bf6d5c1fe
commit 4cff79ad1a
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 0 additions and 18 deletions

View file

@ -39,7 +39,6 @@
nextcloud.enable = true; nextcloud.enable = true;
}; };
chat = { chat = {
discord.enable = true;
}; };
game = { game = {
wine.enable = true; wine.enable = true;

View file

@ -1,5 +1,4 @@
{ {
imports = [ imports = [
./discord
]; ];
} }

View file

@ -1,16 +0,0 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.chat.discord;
in
{
options.modules.desktop.chat.discord = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
discord
];
};
}