aboutsummaryrefslogtreecommitdiffhomepage
path: root/options.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-06-25 03:59:52 +0900
committerOphestra <cat@gensokyo.uk>2025-06-25 04:57:41 +0900
commit87e008d56de974947ebb99c2cc40b25d3c2cf43e (patch)
tree31791911e5226d6ec04e3fac7d91b0bf53e63aa5 /options.nix
parent399207321265307bb15f37d867f9370cd51c82a8 (diff)
treewide: rename to hakurei
Fortify makes little sense for a container tool. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'options.nix')
-rw-r--r--options.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/options.nix b/options.nix
index 29c9a4f9..684485e5 100644
--- a/options.nix
+++ b/options.nix
@@ -39,19 +39,19 @@ in
{
options = {
- environment.fortify = {
- enable = mkEnableOption "fortify";
+ environment.hakurei = {
+ enable = mkEnableOption "hakurei";
package = mkOption {
type = types.package;
- default = packages.${pkgs.system}.fortify;
- description = "The fortify package to use.";
+ default = packages.${pkgs.system}.hakurei;
+ description = "The hakurei package to use.";
};
- fsuPackage = mkOption {
+ hsuPackage = mkOption {
type = types.package;
- default = packages.${pkgs.system}.fsu;
- description = "The fsu package to use.";
+ default = packages.${pkgs.system}.hsu;
+ description = "The hsu package to use.";
};
users = mkOption {
@@ -61,7 +61,7 @@ in
in
attrsOf (ints.between 0 99);
description = ''
- Users allowed to spawn fortify apps and their corresponding fortify fid.
+ Users allowed to spawn hakurei apps and their corresponding hakurei identity.
'';
};
@@ -276,7 +276,7 @@ in
});
default = { };
description = ''
- Declaratively configured fortify apps.
+ Declaratively configured hakurei apps.
'';
};