Regenerated

This commit is contained in:
2026-04-20 18:08:31 +02:00
parent 441c97efa7
commit 0f0a909689
4 changed files with 399 additions and 375 deletions
+5 -4
View File
@@ -42,7 +42,7 @@ The Droidnix repository is organized into two main parts:
#+title: NixOS Configuration Structure
* Root Level
- =flake.nix= is the entry point and imports:
- = is the entry point and imports:
- =generated/assets/=
- =generated/<host>/modules/=
- =generated/hosts/=
@@ -1891,11 +1891,12 @@ This sets the networking.
** =generated/modules/traveldroid/system/nordvpn.nix=
This sets the nordvpn implementation
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/nordvpn.nix :noweb yes :mkdirp yes :eval never
{...}
{ ... }:
let
username = "henrov";
in
{
services.nordvpn.enable = true;
# Add your user to the nordvpn group so you can run the CLI without sudo
users.users.${username}.extraGroups = [ "nordvpn" ];
}
#+END_SRC