diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-27 17:55:29 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-29 08:52:42 +0100 |
commit | 24a3b1a96e167b809d634878d016a729969278c0 (patch) | |
tree | dd8a40c3e8e0b453d0262626e9f79d95ea20aef5 /nixos/profiles/common/default.nix | |
parent | 813cc3c8d51f21b37b8eb2c5ed6abf0306a7ab0d (diff) |
feat(shared): add vpn
Diffstat (limited to 'nixos/profiles/common/default.nix')
-rw-r--r-- | nixos/profiles/common/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/profiles/common/default.nix b/nixos/profiles/common/default.nix index de4499a..d1fe93e 100644 --- a/nixos/profiles/common/default.nix +++ b/nixos/profiles/common/default.nix @@ -1,8 +1,12 @@ { config, pkgs, ... }: +let + npins = import ../../npins; +in { imports = [ ./sanix.nix ./basics.nix + "${npins.agenix}/modules/age.nix" ]; } |