From 32b45a0916926c8077121d3a282afbec7351208a Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Fri, 4 Aug 2017 01:49:04 +0200 Subject: [PATCH] Use Yakuake instead of Guake on laptop --- profiles/software/yakuake.nix | 5 +++++ systems/laptop.nix | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 profiles/software/yakuake.nix diff --git a/profiles/software/yakuake.nix b/profiles/software/yakuake.nix new file mode 100644 index 0000000..908b6c3 --- /dev/null +++ b/profiles/software/yakuake.nix @@ -0,0 +1,5 @@ +packages: {config, ...}: { + environment.systemPackages = with packages; [ + nixpkgs.yakuake + ]; +} diff --git a/systems/laptop.nix b/systems/laptop.nix index 7ae0c77..d97ddc5 100644 --- a/systems/laptop.nix +++ b/systems/laptop.nix @@ -15,7 +15,7 @@ in { (callPackageFile ../profiles/system/pulseaudio.nix) (callPackageFile ../profiles/system/virtualization.nix) - (callPackageFile ../profiles/software/guake.nix) + (callPackageFile ../profiles/software/yakuake.nix) (callPackageFile ../profiles/software/synergy.nix) (callPackageFile ../profiles/software/workrave.nix) ]; @@ -73,4 +73,8 @@ in { };*/ nix.useSandbox = true; + + services.xserver.synaptics = { + enable = true; + }; }