From 87e008d56de974947ebb99c2cc40b25d3c2cf43e Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 25 Jun 2025 03:59:52 +0900 Subject: treewide: rename to hakurei Fortify makes little sense for a container tool. Signed-off-by: Ophestra --- test/configuration.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/configuration.nix') diff --git a/test/configuration.nix b/test/configuration.nix index 4bd1ea55..18aaeda9 100644 --- a/test/configuration.nix +++ b/test/configuration.nix @@ -19,7 +19,7 @@ uid = 1001; # For deny unmapped uid test: - packages = [ config.environment.fortify.package ]; + packages = [ config.environment.hakurei.package ]; }; }; @@ -90,20 +90,20 @@ "-smp 8" ]; - environment.fortify = { + environment.hakurei = { enable = true; - stateDir = "/var/lib/fortify"; + stateDir = "/var/lib/hakurei"; users.alice = 0; extraHomeConfig = { config, ... }: { # To test merge deduplication: - options._fortify.stateVersion = lib.mkOption { type = lib.types.str; }; + options._hakurei.stateVersion = lib.mkOption { type = lib.types.str; }; config = { - home = { inherit (config._fortify) stateVersion; }; - _fortify.stateVersion = "23.05"; + home = { inherit (config._hakurei) stateVersion; }; + _hakurei.stateVersion = "23.05"; }; }; -- cgit v1.3.1