-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
207 changed files
with
2,503 additions
and
11,097 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2066,6 +2066,12 @@ | |
githubId = 869771; | ||
name = "Kirill Boltaev"; | ||
}; | ||
aspauldingcode = { | ||
email = "[email protected]"; | ||
github = "aspauldingcode"; | ||
githubId = 10196826; | ||
name = "Alex Spaulding"; | ||
}; | ||
asppsa = { | ||
email = "[email protected]"; | ||
github = "asppsa"; | ||
|
@@ -4956,6 +4962,12 @@ | |
name = "Dov Alperin"; | ||
keys = [ { fingerprint = "4EED 5096 B925 86FA 1101 6673 7F2C 07B9 1B52 BB61"; } ]; | ||
}; | ||
da-luce = { | ||
email = "[email protected]"; | ||
github = "da-luce"; | ||
githubId = 102048662; | ||
name = "Dalton Luce"; | ||
}; | ||
damhiya = { | ||
name = "SoonWon Moon"; | ||
email = "[email protected]"; | ||
|
@@ -7422,6 +7434,12 @@ | |
name = "Felix Albrigtsen"; | ||
matrix = "@felixalb:feal.no"; | ||
}; | ||
felixdorn = { | ||
name = "Félix"; | ||
matrix = "@d:xfe.li"; | ||
github = "felixdorn"; | ||
githubId = 55788595; | ||
}; | ||
felixscheinost = { | ||
name = "Felix Scheinost"; | ||
email = "[email protected]"; | ||
|
@@ -20884,6 +20902,12 @@ | |
githubId = 16765155; | ||
name = "Shardul Baral"; | ||
}; | ||
sharpchen = { | ||
github = "sharpchen"; | ||
githubId = 77432836; | ||
name = "sharpchen"; | ||
email = "[email protected]"; | ||
}; | ||
sharzy = { | ||
email = "[email protected]"; | ||
github = "SharzyL"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
let | ||
cfg = config.programs.amnezia-vpn; | ||
in | ||
{ | ||
options.programs.amnezia-vpn = { | ||
enable = lib.mkEnableOption "The AmneziaVPN client"; | ||
}; | ||
|
||
config = lib.mkIf cfg.enable { | ||
environment.systemPackages = [ pkgs.amnezia-vpn ]; | ||
services.dbus.packages = [ pkgs.amnezia-vpn ]; | ||
services.resolved.enable = true; | ||
|
||
systemd = { | ||
packages = [ pkgs.amnezia-vpn ]; | ||
services."AmneziaVPN".wantedBy = [ "multi-user.target" ]; | ||
}; | ||
}; | ||
|
||
meta.maintainers = with lib.maintainers; [ sund3RRR ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.