summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2020-06-09 18:24:29 -0600
committerKenny Ballou <kballou@devnulllabs.io>2020-06-09 18:24:29 -0600
commit718f38cc8f1e7bf6f32f7628c4dbe31cc501366a (patch)
tree50955fd3aa45903697ab7cda3f0a9fbecedb2e1a
parentfd217d0e39eed29bbc2da8424789567143624ba8 (diff)
downloadcfg.nix-718f38cc8f1e7bf6f32f7628c4dbe31cc501366a.tar.gz
cfg.nix-718f38cc8f1e7bf6f32f7628c4dbe31cc501366a.tar.xz
orobas: use gnome shell
Do to some instability in KDE/Plasma having some screen tearing issues, switching to gnome to get wayland support and less screen tearing. Add package override over orobas to install the gnome-applications overlay. Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
-rw-r--r--orobas/configuration.nix3
-rw-r--r--orobas/packages.nix7
2 files changed, 9 insertions, 1 deletions
diff --git a/orobas/configuration.nix b/orobas/configuration.nix
index 93d06fb..49453bd 100644
--- a/orobas/configuration.nix
+++ b/orobas/configuration.nix
@@ -18,7 +18,7 @@
../services/x11.nix
../services/x11-intel.nix
../services/x11-laptop.nix
- ../services/kde.nix
+ ../services/gnome.nix
../services/haveged.nix
../services/printing.nix
../system/bluetooth.nix
@@ -35,6 +35,7 @@
../system/yubikey-gpg.nix
../programs/mtr.nix
../programs/gnupg.nix
+ ./packages.nix
];
# Use the systemd-boot EFI boot loader.
diff --git a/orobas/packages.nix b/orobas/packages.nix
new file mode 100644
index 0000000..d087503
--- /dev/null
+++ b/orobas/packages.nix
@@ -0,0 +1,7 @@
+{ config, pkgs, ... }:
+{
+ # orobas packages
+ environment.systemPackages = with pkgs; [
+ gnome-applications
+ ];
+}