Regenerated
This commit is contained in:
+386
-361
File diff suppressed because it is too large
Load Diff
+19
-1
@@ -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
@@ -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" ];
|
||||
}
|
||||
Reference in New Issue
Block a user