29 lines
306 B
Nix
Executable file
29 lines
306 B
Nix
Executable file
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
config.nixcord.homeManagerModules.nixcord
|
|
];
|
|
|
|
programs.nixcord = {
|
|
enable = true;
|
|
config = {
|
|
#themeLinks = [
|
|
# ""
|
|
#];
|
|
|
|
# no surrounding window frame
|
|
frameless = true;
|
|
|
|
plugins = {
|
|
};
|
|
};
|
|
};
|
|
}
|