Testing SecureBoot
This commit is contained in:
parent
71b700bf7f
commit
618424c145
2 changed files with 13 additions and 2 deletions
|
@ -41,6 +41,10 @@
|
|||
boot.plymouth.enable = true;
|
||||
boot.initrd.systemd.enable = true;
|
||||
boot.kernelParams = ["quiet"];
|
||||
# SecureBoot
|
||||
boot.loader.systemd-boot.enable = lib.mkForce false;
|
||||
boot.lanzaboote.enable = true;
|
||||
pkiBundle = "/etc/secureboot";
|
||||
|
||||
# Setup keyfile
|
||||
boot.initrd.secrets = {
|
||||
|
|
|
@ -8,10 +8,16 @@
|
|||
# Manage dotfiles in a home directory
|
||||
home-manager.url = "github:nix-community/home-manager/release-23.05";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
# Secureboot Configuration
|
||||
lanzaboote.url = "github:nix-community/lanzaboote";
|
||||
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, home-manager, ... }:
|
||||
outputs = { nixpkgs, home-manager, lanzaboote, ... }:
|
||||
let
|
||||
# Secureboot Configuration
|
||||
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
# Tells Flake what OS version we are using
|
||||
|
@ -28,6 +34,7 @@
|
|||
modules = [
|
||||
./configuration.nix
|
||||
./hardware-configuration.nix
|
||||
lanzaboote.nixosModules.lanzaboote
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue