enable wg netns on nixdesk but make it not auto start
This commit is contained in:
parent
6f93b94320
commit
9beb028281
2 changed files with 4 additions and 1 deletions
|
@ -11,7 +11,7 @@
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
./hibernate-boot.nix
|
./hibernate-boot.nix
|
||||||
./samba-mount.nix
|
./samba-mount.nix
|
||||||
# ./wireguard.nix
|
./wireguard.nix
|
||||||
./restic-server.nix
|
./restic-server.nix
|
||||||
|
|
||||||
inputs.stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
inputs,
|
inputs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [inputs.vpn-confinement.nixosModules.default];
|
imports = [inputs.vpn-confinement.nixosModules.default];
|
||||||
|
@ -27,4 +28,6 @@
|
||||||
# From inside of the vpn namespace to outside of it, for making things inside accessible to LAN
|
# From inside of the vpn namespace to outside of it, for making things inside accessible to LAN
|
||||||
portMappings = [];
|
portMappings = [];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
systemd.services.wg.wantedBy = lib.mkForce [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue