From aaea0f79a4a90863f489bfcb523a17c98e2e54dd Mon Sep 17 00:00:00 2001 From: James Patrick Date: Wed, 23 Mar 2022 22:46:18 -0400 Subject: [PATCH] A bunch gnome applications --- modules/applications/gnome-common.nix | 38 ++++++++++++++++++--------- 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/modules/applications/gnome-common.nix b/modules/applications/gnome-common.nix index 83853b2..dc37b69 100644 --- a/modules/applications/gnome-common.nix +++ b/modules/applications/gnome-common.nix @@ -3,19 +3,31 @@ let graphical = config.this.graphical; in with lib; { config = mkIf graphical.enable { home-manager.users.james = { - home.packages = with pkgs; [ - gnome.file-roller - gnome.gnome-bluetooth - gnome.gnome-calendar - gnome.gnome-characters - gnome.gnome-color-manager - gnome.gnome-contacts - gnome.gnome-dictionary - gnome.gnome-font-viewer - gnome.gnome-keyring - gnome.gnome-maps - gnome.libgnome-keyring - gnome.nautilus + home.packages = with pkgs.gnome; [ + #gnome-common + cheese + file-roller + gnome-bluetooth + gnome-books + gnome-boxes + gnome-calendar + gnome-characters + gnome-color-manager + gnome-contacts + gnome-control-center + gnome-dictionary + #gnome-documents + gnome-font-viewer + gnome-keyring + gnome-maps + gnome-music + gnome-power-manager # conditioanl if upower is used + iagno + libgnome-keyring + nautilus + pomodoro + seahorse + sushi ]; }; };