diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-11 23:55:17 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-11 23:55:17 +0200 |
| commit | d2dba1003ddd06c55ca3885b3bd7d341dc2278d4 (patch) | |
| tree | add54d1ce23d50a5a3f27895863775e4398fa03c | |
| parent | f7f0b4d27a2a4c40448e67a34783cf46226558d1 (diff) | |
Add nixcord to home
| -rw-r--r-- | home/mun/default.nix | 1 | ||||
| -rw-r--r-- | home/mun/programs/nixcord.nix | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/home/mun/default.nix b/home/mun/default.nix index 6a3d630..9d9000f 100644 --- a/home/mun/default.nix +++ b/home/mun/default.nix @@ -8,6 +8,7 @@ ./programs/ssh.nix ./programs/git.nix ./programs/nvim.nix + ./programs/nixcord.nix ]; home = { diff --git a/home/mun/programs/nixcord.nix b/home/mun/programs/nixcord.nix new file mode 100644 index 0000000..3cc1199 --- /dev/null +++ b/home/mun/programs/nixcord.nix @@ -0,0 +1,11 @@ +{inputs, ...}: { + imports = [ + inputs.nixcord.homeModules.nixcord + ]; + + programs.nixcord = { + enable = true; + + discord.equicord.enable = true; + }; +} |
