Add documentation and script for secure boot

This commit is contained in:
Fabian Hauser 2025-03-07 15:06:46 +02:00
parent e70f04a451
commit 3bae7e8912
4 changed files with 56 additions and 4 deletions

View file

@ -107,7 +107,9 @@
) self.nixosConfigurations;
};
devShells.default = pkgs.mkShell {
packages.dotfiles-enroll-tpm = pkgs.callPackage ./packages/dotfiles-enroll-tpm { inherit self; };
devShells.default = pkgs.mkShellNoCC {
name = "nix-config-default-shell";
packages = lib.attrValues {
inherit (pkgs)
@ -119,6 +121,7 @@
ssh-to-age
nixd
;
inherit (self'.packages) dotfiles-enroll-tpm;
};
shellHook = ''
${config.pre-commit.installationScript}