forked from foxora/nix
16 lines
211 B
Nix
16 lines
211 B
Nix
|
|
{ inputs, ... }:
|
||
|
|
{
|
||
|
|
imports = [
|
||
|
|
inputs.mango.hmModules.mango
|
||
|
|
];
|
||
|
|
|
||
|
|
wayland.windowManager.mango = {
|
||
|
|
enable = true;
|
||
|
|
};
|
||
|
|
|
||
|
|
xdg.configFile."mango" = {
|
||
|
|
recursive = true;
|
||
|
|
source = ./mango;
|
||
|
|
};
|
||
|
|
}
|