nix-config/hosts/nixos/modules/packages.nix
lightly-toasted b738736f94 feat: add lanzaboote
- Added lanzaboote
- Disabled systemd-boot in favor of lanzaboote
- Added sbctl
2025-08-28 22:37:42 +09:00

10 lines
141 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vim
wget
sbctl
];
nixpkgs.config.allowUnfree = true;
}