aboutsummaryrefslogtreecommitdiffstats
path: root/system
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
parentFeat(bootstrap): Separate the builder to a library (diff)
downloadnixos-config-43b5391e68aa0e6a01a8c85966490272aee4c402.zip
Fix(system): Fully embrace the home packages
Diffstat (limited to '')
-rw-r--r--system/default.nix2
-rw-r--r--system/packages/default.nix72
2 files changed, 37 insertions, 37 deletions
diff --git a/system/default.nix b/system/default.nix
index 3aed0b37..14762c92 100644
--- a/system/default.nix
+++ b/system/default.nix
@@ -6,7 +6,7 @@
./font
./impermanence
./locale
- ./packages
+#./packages
./sound
];
}
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
# {{{