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
+369 -368
View File
File diff suppressed because it is too large Load Diff
+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
+21
View File
@@ -647,6 +647,26 @@
"type": "github"
}
},
"nordvpn-flake": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1742098294,
"narHash": "sha256-kszMKykXU1oZIn8RSDuBwIa5hY5om2wdy32KYgYKzs8=",
"owner": "m-lourenco0",
"repo": "nordvpn-flake",
"rev": "72594cb60df19951ee726dcad24ef0a9c5d29fbc",
"type": "github"
},
"original": {
"owner": "m-lourenco0",
"repo": "nordvpn-flake",
"type": "github"
}
},
"nur": {
"inputs": {
"flake-parts": [
@@ -723,6 +743,7 @@
"hyprland": "hyprland",
"import-tree": "import-tree",
"nixpkgs": "nixpkgs_2",
"nordvpn-flake": "nordvpn-flake",
"quickshell": "quickshell",
"stylix": "stylix",
"zen-browser": "zen-browser"
@@ -1,8 +1,9 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{...}
{ ... }:
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" ];
}