[pi4] Added Sops with new hash. Added boot recipe to justfile

This commit is contained in:
2025-04-18 13:59:06 +00:00
parent b521aebef6
commit 9e96de997d
3 changed files with 30 additions and 13 deletions

View File

@ -1,14 +1,16 @@
{
lib,
config,
systemConfig,
...
}:
{
imports = [
(lib.custom.relativeToRoot "shared/modules/nix-helper.nix")
(lib.custom.relativeToRoot "shared/modules/nixos.nix")
(lib.custom.relativeToRoot "shared/modules/shell.nix")
imports = with lib.custom; [
(relativeToRoot "shared/modules/nix-helper.nix")
(relativeToRoot "shared/modules/nixos.nix")
(relativeToRoot "shared/modules/shell.nix")
(relativeToRoot "shared/modules/security/sops.nix")
./boot.nix
./development.nix
./hardware.nix
@ -22,7 +24,7 @@
mutableUsers = false;
users.${systemConfig.user.name} = {
isNormalUser = true;
password = systemConfig.user.password;
hashedPasswordFile = config.sops.secrets.password.path;
extraGroups = [ "wheel" ];
};
};