about summary refs log tree commit diff stats
path: root/system/packages
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-19 19:14:33 +0100
committerene <ene@sils.li>2023-02-19 19:14:33 +0100
commit43b5391e68aa0e6a01a8c85966490272aee4c402 (patch)
tree587a382c940f5c5c6365752a7a00f56e9e3f8d37 /system/packages
parentFeat(bootstrap): Separate the builder to a library (diff)
downloadnixos-config-43b5391e68aa0e6a01a8c85966490272aee4c402.tar.gz
nixos-config-43b5391e68aa0e6a01a8c85966490272aee4c402.zip
Fix(system): Fully embrace the home packages
Diffstat (limited to 'system/packages')
-rw-r--r--system/packages/default.nix72
1 files changed, 36 insertions, 36 deletions
diff --git a/system/packages/default.nix b/system/packages/default.nix
index 8f0271fe..ecbbf904 100644
--- a/system/packages/default.nix
+++ b/system/packages/default.nix
@@ -1,39 +1,39 @@
-{pkgs, ...}:
-with pkgs; let
-  mapFun = x:
-    if builtins.isAttrs x
-    then
-      if lib.isDerivation x
-      then [x]
-      else builtins.attrValues x
-    else [x];
-in {
-  nixpkgs.config.allowUnfreePredicate = pkg:
-    builtins.elem (lib.getName pkg) [
-      "steam"
-      "steam-original"
-    ];
-
-  environment.systemPackages = with builtins;
-    concatLists
-    (concatLists [
-      (concatMap mapFun
-        (concatMap mapFun
-          (concatMap mapFun
-            (concatMap mapFun
-              (concatMap mapFun
-                (concatMap mapFun
-                  (attrValues Gui)))))))
-
-      (concatMap mapFun
-        (concatMap mapFun
-          (concatMap mapFun
-            (concatMap mapFun
-              (concatMap mapFun
-                (concatMap mapFun
-                  (attrValues TuiCli)))))))
-    ]);
-}
+{pkgs, ...}: {}
+#with pkgs; let
+#  mapFun = x:
+#    if builtins.isAttrs x
+#    then
+#      if lib.isDerivation x
+#      then [x]
+#      else builtins.attrValues x
+#    else [x];
+#in {
+#  nixpkgs.config.allowUnfreePredicate = pkg:
+#    builtins.elem (lib.getName pkg) [
+#      "steam"
+#      "steam-original"
+#    ];
+#
+#  environment.systemPackages = with builtins;
+#    concatLists
+#    (concatLists [
+#      (concatMap mapFun
+#        (concatMap mapFun
+#          (concatMap mapFun
+#            (concatMap mapFun
+#              (concatMap mapFun
+#                (concatMap mapFun
+#                  (attrValues Gui)))))))
+#
+#      (concatMap mapFun
+#        (concatMap mapFun
+#          (concatMap mapFun
+#            (concatMap mapFun
+#              (concatMap mapFun
+#                (concatMap mapFun
+#                  (attrValues TuiCli)))))))
+#    ]);
+#}
 # QEMU
 # TEX
 # {{{