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