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