Many changes

This commit is contained in:
2024-01-25 00:55:35 -07:00
commit f5f1a2b69c
56 changed files with 4123 additions and 0 deletions

10
modules/discord/home.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, lib, ... }: {
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"discord"
];
home.packages = [
pkgs.discord
];
}