about summary refs log tree commit diff
path: root/modules/services/gnome
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-01 19:52:29 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-01 19:52:29 -0700
commit5493fe0db118b0fd934073eb63d2d2e3e1fc99df (patch)
treeb6e1a0d57b39f2c2a366358d5bcd5a54dc66e20c /modules/services/gnome
parentprofiles/laptop: consolidate services related to laptop (diff)
downloadworld-5493fe0db118b0fd934073eb63d2d2e3e1fc99df.tar.gz
profiles/workstation: moved more things around
Diffstat (limited to '')
-rw-r--r--modules/services/gnome/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/services/gnome/default.nix b/modules/services/gnome/default.nix
deleted file mode 100644
index 46619eb..0000000
--- a/modules/services/gnome/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ config, pkgs, lib, ... }:
-let cfg = config.my.services.gnome;
-in
-{
-  options.my.services.gnome = with lib; { enable = mkEnableOption "gnome"; };
-
-  config = lib.mkIf cfg.enable {
-    services = {
-      dbus = {
-        enable = true;
-        packages = with pkgs; [ gcr dconf ];
-      };
-
-      udev.packages = with pkgs; [ gnome3.gnome-settings-daemon ];
-
-      gvfs = {
-        enable = true;
-        package = pkgs.gnome.gvfs;
-      };
-    };
-  };
-}