diff options
Diffstat (limited to 'home/mun')
| -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; + }; +} |
