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; + }; }