-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/kanboard
- Loading branch information
Showing
333 changed files
with
7,355 additions
and
111,197 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15206,6 +15206,13 @@ | |
githubId = 1234956; | ||
"keys" = [ { "fingerprint" = "F21A 6194 C9DB 9899 CD09 E24E 434B 2C14 B8C3 3422"; } ]; | ||
}; | ||
nadiaholmquist = { | ||
name = "Nadia Holmquist Pedersen"; | ||
email = "[email protected]"; | ||
matrix = "@nhp:matrix.org"; | ||
github = "nadiaholmquist"; | ||
githubId = 893884; | ||
}; | ||
nadir-ishiguro = { | ||
github = "nadir-ishiguro"; | ||
githubId = 23151917; | ||
|
@@ -16895,6 +16902,12 @@ | |
githubId = 943430; | ||
name = "David Hagege"; | ||
}; | ||
peat-psuwit = { | ||
name = "Ratchanan Srirattanamet"; | ||
email = "[email protected]"; | ||
github = "peat-psuwit"; | ||
githubId = 6771175; | ||
}; | ||
pedohorse = { | ||
github = "pedohorse"; | ||
githubId = 13556996; | ||
|
@@ -18824,6 +18837,12 @@ | |
githubId = 6204883; | ||
name = "Longrin Wischnewski"; | ||
}; | ||
robbiebuxton = { | ||
email = "[email protected]"; | ||
github = "robbiebuxton"; | ||
githubId = 67549526; | ||
name = "Robbie Buxton"; | ||
}; | ||
robbinch = { | ||
email = "[email protected]"; | ||
github = "robbinch"; | ||
|
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
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,32 @@ | ||
{ | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
|
||
let | ||
cfg = config.programs.arp-scan; | ||
in | ||
{ | ||
options = { | ||
programs.arp-scan = { | ||
enable = lib.mkOption { | ||
type = lib.types.bool; | ||
default = false; | ||
description = '' | ||
Whether to configure a setcap wrapper for arp-scan. | ||
''; | ||
}; | ||
}; | ||
}; | ||
|
||
config = lib.mkIf cfg.enable { | ||
security.wrappers.arp-scan = { | ||
owner = "root"; | ||
group = "root"; | ||
capabilities = "cap_net_raw+p"; | ||
source = lib.getExe pkgs.arp-scan; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.