summaryrefslogtreecommitdiff
path: root/sys/baseline/default.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-12-03 17:30:42 -0600
committerAlejandro Soto <alejandro@34project.org>2024-12-03 23:10:42 -0600
commit771624767c3d916e2c77d352e71c07bffca8da59 (patch)
tree6e7808948a7f9416a8880d07ae7e32f02aeecf37 /sys/baseline/default.nix
parentcadbe2cdcc16836cda8f936e3c61c28d3ba2cba5 (diff)
sys/platform/[lustrated]: initial commit, adapted from old [lustrated] repo
Diffstat (limited to '')
-rw-r--r--sys/baseline/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/baseline/default.nix b/sys/baseline/default.nix
index 3cb457e..00922d0 100644
--- a/sys/baseline/default.nix
+++ b/sys/baseline/default.nix
@@ -1,4 +1,4 @@
-{ config, lib, pkgs, ... }:
+{ config, flakes, lib, pkgs, ... }:
with lib; {
config = {
# This value determines the NixOS release from which the default
@@ -24,6 +24,13 @@ with lib; {
];
};
+ home-manager = {
+ useGlobalPkgs = true;
+ useUserPackages = true;
+
+ extraSpecialArgs = { inherit flakes; };
+ };
+
lib.local = pkgs.local.lib;
local.boot.impermanence.directories = [ "/var/lib/dhparams" ];