Remove discord

This commit is contained in:
Oliver Davies 2025-04-05 09:00:00 +01:00
parent 49d46a30f9
commit 8a6fa82419
5 changed files with 0 additions and 20 deletions

View file

@ -1,6 +1,5 @@
{
imports = [
./discord.nix
./flameshot.nix
./gtk.nix
./media

View file

@ -1,16 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib;
{
options.homeManagerModules.discord.enable = mkEnableOption "Enable Discord";
config = mkIf config.homeManagerModules.discord.enable {
home.packages = with pkgs; [ discord ];
};
}