summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2020-04-07 23:28:35 -0600
committerKenny Ballou <kballou@devnulllabs.io>2020-04-07 23:28:35 -0600
commiteae1b48a69dea7f825dbfbda615ba724b4a2ffc6 (patch)
tree65863aefd06d2309ded2cd7b2117af90caccd54d /services
parent6600922a21be0b3630439d2718294e4f4489ba9d (diff)
downloadcfg.nix-eae1b48a69dea7f825dbfbda615ba724b4a2ffc6.tar.gz
cfg.nix-eae1b48a69dea7f825dbfbda615ba724b4a2ffc6.tar.xz
services: gnome shell
Add basic configuration for gnome-shell desktop. Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'services')
-rw-r--r--services/gnome.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/services/gnome.nix b/services/gnome.nix
new file mode 100644
index 0000000..ccbe653
--- /dev/null
+++ b/services/gnome.nix
@@ -0,0 +1,12 @@
+{ config, pkgs, ... }:
+{
+ # Enable the GNOME Desktop Environment.
+ services.xserver = {
+ displayManager.gdm = {
+ enable = true;
+ };
+ desktopManager.gnome3.enable = true;
+ };
+ programs.dconf.enable = true;
+ services.dbus.packages = with pkgs; [ gnome2.GConf ];
+}