summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-28 08:22:51 -0500
committerseth <[email protected]>2023-01-28 08:22:51 -0500
commitd8ef1857692a16b798e57b34ac2956fc3b752485 (patch)
tree41bb50e96a490f9a337edd1196da18daa3555f1c /hosts
parent17323f963d2c576cba5f065837e5b86b79e950db (diff)
actually fix gnome for host and user
Diffstat (limited to 'hosts')
-rw-r--r--hosts/common/default.nix2
-rw-r--r--hosts/common/desktop/gnome.nix16
-rw-r--r--hosts/common/users.nix1
3 files changed, 5 insertions, 14 deletions
diff --git a/hosts/common/default.nix b/hosts/common/default.nix
index 1947de1..a631731 100644
--- a/hosts/common/default.nix
+++ b/hosts/common/default.nix
@@ -1,4 +1,4 @@
-{config, ...}: {
+_: {
imports = [
./documentation.nix
./desktop
diff --git a/hosts/common/desktop/gnome.nix b/hosts/common/desktop/gnome.nix
index d1f003c..af4a0d0 100644
--- a/hosts/common/desktop/gnome.nix
+++ b/hosts/common/desktop/gnome.nix
@@ -6,18 +6,10 @@
environmentConfig =
if config.sys.desktop == "gnome"
then {
- gnome.excludePackages = with pkgs;
- [
- epiphany
- gnome-tour
- ]
- ++ (with pkgs.gnome; [
- cheese
- geary
- gnome-characters
- gnome-contacts
- gnome-music
- ]);
+ gnome.excludePackages = with pkgs; [
+ epiphany
+ gnome-tour
+ ];
systemPackages = with pkgs; [
adw-gtk3
blackbox-terminal
diff --git a/hosts/common/users.nix b/hosts/common/users.nix
index 406a91f..bc5ef7f 100644
--- a/hosts/common/users.nix
+++ b/hosts/common/users.nix
@@ -1,6 +1,5 @@
{
config,
- lib,
pkgs,
...
}: {