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