mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-06-01 04:58:37 +03:00
19 lines
233 B
Nix
19 lines
233 B
Nix
{...}: {
|
|
imports = [
|
|
./common.nix
|
|
];
|
|
|
|
services.xserver = {
|
|
displayManager = {
|
|
lightdm = {
|
|
enable = true;
|
|
};
|
|
};
|
|
desktopManager = {
|
|
xfce = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|