Drop legcord, add nixcord with defaults.

This commit is contained in:
jay
2025-07-13 11:29:56 -04:00
parent 456081a657
commit 5e424b9131
3 changed files with 13 additions and 1 deletions

View File

@@ -29,6 +29,10 @@
url = "github:nix-community/impermanence";
};
nixcord = {
url = "github:kaylorbean/nixcord";
};
sops-nix-stable-nixos = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs-stable-nixos";

View File

@@ -7,6 +7,7 @@
home.homeDirectory = "/home/jay";
imports = [
inputs.nixcord.homeModules.nixcord
inputs.stylix.homeModules.stylix
./programs/alacritty.nix
./programs/bash.nix
@@ -15,6 +16,7 @@
./programs/hyprlock.nix
./programs/hyprpanel.nix
./programs/lazygit.nix
./programs/nixcord.nix
./programs/oh-my-posh.nix
./programs/rbw.nix
./programs/rofi.nix
@@ -38,7 +40,6 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
pkgs.legcord
pkgs.libgtop
#pkgs.mpvpaper
# pkgs.hyprlandPlugins.hyprtrails

View File

@@ -0,0 +1,7 @@
{ ... }: {
programs.nixcord = {
enable = true;
discord.enable = true;
vesktop.enable = true;
};
}