Category:Desktop environment/zh-cn: Difference between revisions

From NixOS Wiki
Created page with "{{file|/etc/nixos/configuration.nix|nix|<nowiki> services.xserver.enable = true; services.xserver.displayManager.gdm.enable = true; services.xserver.desktopManager.gnome.enable = true; </nowiki>}}"
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
linux 桌面环境是图形用户界面,也是PC设置的工具集。用于管理窗口,调整设置等,同时提供不同的特性和用户体验。
linux 桌面环境是图形用户界面,也是PC设置的工具集。用于管理窗口,调整设置等,同时提供不同的特性和用户体验。


与大多数其他的Linux发行版相反,在Nixos中,安装或修改桌面环境只是件简单的小事。例如,要使用功能齐全的GNOME桌面环境只需要在你的配置中添加如下几行。
与大多数其他的Linux发行版相反,在NixOS中,安装或修改桌面环境只是件简单的小事。例如,要使用功能齐全的GNOME桌面环境,只需要在你的配置中添加如下几行。


{{file|/etc/nixos/configuration.nix|nix|<nowiki>
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
Line 10: Line 10:
</nowiki>}}
</nowiki>}}


<div lang="en" dir="ltr" class="mw-content-ltr">
更改 <code>desktopManager</code> <code>displayManager</code>选项应该足以选择一个不同的桌面环境, 应用配置并重引导系统后,你就可以使用新环境了。一些环境要求配置组件选项。因为NixOS的工作方式,在实验不同桌面环境的各种工具和依赖关系时,系统不会变得臃肿: 桌面环境的默认应用程序只有在该桌面环境处于活动状态时,或者当你从其他桌面环境手动安装程序时才会出现。
Changing the <code>desktopManager</code> and <code>displayManager</code> options should be enough to select a different desktop environment. Applying the configuration and rebooting the system should greet you to your new environment. Only some desktop environments require additional configuration options. Because of how NixOS works, the system will not become bloated when experimenting with different desktop environments by their various tools and dependencies: The default applications of a desktop environment are only here when said desktop environment is active, or when you manually install programs from another desktop environment.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
{| class="wikitable sortable"
{| class="wikitable sortable"
|+
|+
!Desktop Environment
!桌面环境
!displayManager (others may work too)
!显式管理器(不匹配也可能通用)
!desktopManager
!桌面管理器
!additionally needed
!需求组件
|-
|-
|Gnome
|Gnome
Line 87: Line 84:
|
|
|}
|}
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
[[Category:Desktop]]
[[Category:Desktop]]
</div>

Latest revision as of 17:05, 4 September 2024

linux 桌面环境是图形用户界面,也是PC设置的工具集。用于管理窗口,调整设置等,同时提供不同的特性和用户体验。

与大多数其他的Linux发行版相反,在NixOS中,安装或修改桌面环境只是件简单的小事。例如,要使用功能齐全的GNOME桌面环境,只需要在你的配置中添加如下几行。

/etc/nixos/configuration.nix
services.xserver.enable = true;
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;

更改 desktopManagerdisplayManager选项应该足以选择一个不同的桌面环境, 应用配置并重引导系统后,你就可以使用新环境了。一些环境要求配置组件选项。因为NixOS的工作方式,在实验不同桌面环境的各种工具和依赖关系时,系统不会变得臃肿: 桌面环境的默认应用程序只有在该桌面环境处于活动状态时,或者当你从其他桌面环境手动安装程序时才会出现。

桌面环境 显式管理器(不匹配也可能通用) 桌面管理器 需求组件
Gnome gdm gnome
KDE/Plasma5 sddm plasma5
KDE/Plasma6 sddm plasma6 services.displayManager.sddm.wayland.enable = true;
Cinnamon lightdm cinnamon
Mate lightdm mate
XFCE lightdm xfce
Budgie lightdm budgie
Deepin lightdm deepin
Pantheon lightdm pantheon
CDE lightdm cde
COSMIC see COSMIC
LXQT lightdm lxqt
Lumina lightdm lumina

This category currently contains no pages or media.