Move discord apps to its own file, setup betterdiscord.

This commit is contained in:
jay
2025-07-26 07:48:10 -04:00
parent db78dd33c3
commit f4491974ca
2 changed files with 7 additions and 5 deletions

View File

@@ -19,7 +19,7 @@
./programs/hyprpanel.nix
./programs/lazygit.nix
./programs/mangohud.nix
#./programs/nixcord.nix
./programs/discord.nix
./programs/oh-my-posh.nix
./programs/qutebrowser.nix
./programs/rbw.nix
@@ -44,13 +44,9 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
pkgs.legcord
#pkgs.goofcord
#pkgs.equibop
pkgs.libgtop
#pkgs.mpvpaper
# pkgs.hyprlandPlugins.hyprtrails
#pkgs.vesktop
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }: {
environment.systemPackages = [
pkgs.betterdiscordctl
];
}