diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-12-03 17:30:42 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-12-03 23:10:42 -0600 |
| commit | 771624767c3d916e2c77d352e71c07bffca8da59 (patch) | |
| tree | 6e7808948a7f9416a8880d07ae7e32f02aeecf37 /sys/baseline/default.nix | |
| parent | cadbe2cdcc16836cda8f936e3c61c28d3ba2cba5 (diff) | |
sys/platform/[lustrated]: initial commit, adapted from old [lustrated] repo
Diffstat (limited to '')
| -rw-r--r-- | sys/baseline/default.nix | 9 |
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" ]; |
