Regenerated

This commit is contained in:
2026-04-20 17:57:30 +02:00
parent 6083d6668a
commit 5a08bdb211
4 changed files with 420 additions and 363 deletions
+386 -361
View File
File diff suppressed because it is too large Load Diff
+19 -1
View File
@@ -211,10 +211,15 @@ The Nix flake definition for Droidnix.
inputs.nixpkgs.follows = "nixpkgs";
};
nordvpn-flake = {
url = "github:m-lourenco0/nordvpn-flake";
inputs.nixpkgs.follows = "nixpkgs"; # optional but recommended
};
hyprland.url = "github:hyprwm/Hyprland";
};
outputs = { self, nixpkgs, home-manager, import-tree, stylix, hyprland, emacs-overlay, zen-browser, flatpak, ... }:
outputs = { self, nixpkgs, home-manager, import-tree, stylix, hyprland, emacs-overlay, zen-browser, flatpak, nordvpn,... }:
let
system = "x86_64-linux";
flakeRoot = self;
@@ -234,6 +239,7 @@ The Nix flake definition for Droidnix.
specialArgs = {
inherit flakeRoot;
inherit home-manager import-tree stylix hyprland zen-browser;
inherit inputs;
};
};
};
@@ -1876,6 +1882,18 @@ This sets the networking.
}
#+END_SRC
** =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
{...}
{
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
** =generated/modules/traveldroid/system/printing.nix=
This sets the dbus implementation
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/printing.nix :noweb yes :mkdirp yes :eval never
+7 -1
View File
@@ -36,10 +36,15 @@
inputs.nixpkgs.follows = "nixpkgs";
};
nordvpn-flake = {
url = "github:m-lourenco0/nordvpn-flake";
inputs.nixpkgs.follows = "nixpkgs"; # optional but recommended
};
hyprland.url = "github:hyprwm/Hyprland";
};
outputs = { self, nixpkgs, home-manager, import-tree, stylix, hyprland, emacs-overlay, zen-browser, flatpak, ... }:
outputs = { self, nixpkgs, home-manager, import-tree, stylix, hyprland, emacs-overlay, zen-browser, flatpak, nordvpn,... }:
let
system = "x86_64-linux";
flakeRoot = self;
@@ -59,6 +64,7 @@
specialArgs = {
inherit flakeRoot;
inherit home-manager import-tree stylix hyprland zen-browser;
inherit inputs;
};
};
};
@@ -0,0 +1,8 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{...}
{
services.nordvpn.enable = true;
# Add your user to the nordvpn group so you can run the CLI without sudo
users.users.${username}.extraGroups = [ "nordvpn" ];
}