diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-26 13:01:44 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-26 13:01:44 -0400 |
| commit | db1096e7b1a9417fefe9039d808b213ec3302448 (patch) | |
| tree | dc6a171f33877dddef047e07edd25790f73dd429 /hosts/thinkpad/default.nix | |
| parent | add amd anti lag (diff) | |
| download | dotfiles-nix-db1096e7b1a9417fefe9039d808b213ec3302448.tar.gz dotfiles-nix-db1096e7b1a9417fefe9039d808b213ec3302448.tar.bz2 dotfiles-nix-db1096e7b1a9417fefe9039d808b213ec3302448.zip | |
refactor sops/vpn into modules
Diffstat (limited to 'hosts/thinkpad/default.nix')
| -rw-r--r-- | hosts/thinkpad/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hosts/thinkpad/default.nix b/hosts/thinkpad/default.nix index 11b5bcb..8db964c 100644 --- a/hosts/thinkpad/default.nix +++ b/hosts/thinkpad/default.nix @@ -3,8 +3,6 @@ _: { imports = [ ./hardware.nix - ./sops.nix - ./wireguard.nix ]; # options @@ -35,6 +33,10 @@ _: { homestuck.enable = true; minecraft.enable = true; }; + vpn = { + enable = true; + ip = "10.3.0.5/32"; + }; # modules battery.enable = true; |