14 lines
195 B
Nix
14 lines
195 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
wayland.windowManager.mango = {
|
|
enable = true;
|
|
};
|
|
|
|
systemd = {
|
|
enable = true;
|
|
xdgAutostart = true;
|
|
};
|
|
|
|
settings = builtins.readFile ./mango.conf;
|
|
}
|