about summary refs log tree commit diff
path: root/pkgs/desktops/arcan
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-05-07 15:12:12 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-05-07 15:12:12 -0300
commite9ebd66bf63a1a07b7449432db3938ce87becc66 (patch)
treef57474068fe3ad464108b720f80ec144e35b7977 /pkgs/desktops/arcan
parent9331ecf18eaae1a1cbb5cc5d3c32a90960f4d20d (diff)
arcan: refactor
To be more similar to other expressions (especially XFCE).
Diffstat (limited to 'pkgs/desktops/arcan')
-rw-r--r--pkgs/desktops/arcan/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/desktops/arcan/default.nix b/pkgs/desktops/arcan/default.nix
index 9d9f28a795383..3db4d4eb819ca 100644
--- a/pkgs/desktops/arcan/default.nix
+++ b/pkgs/desktops/arcan/default.nix
@@ -1,6 +1,6 @@
-{ callPackage, lib, pkgs }:
+{ config, lib, pkgs }:
 
-rec {
+lib.makeScope pkgs.newScope (self: with self; {
   # Dependencies
 
   espeak = pkgs.espeak-ng;
@@ -40,4 +40,4 @@ rec {
     name = "all-wrapped";
     appls = [ durden pipeworld ];
   };
-}
+})