mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-06-03 14:08:40 +03:00
19 lines
237 B
Nix
19 lines
237 B
Nix
{...}: {
|
|
imports = [
|
|
./common.nix
|
|
];
|
|
|
|
services.xserver = {
|
|
displayManager = {
|
|
lightdm = {
|
|
enable = true;
|
|
};
|
|
};
|
|
desktopManager = {
|
|
cinnamon = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|