mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 07:25:40 +00:00
- Added lanzaboote - Disabled systemd-boot in favor of lanzaboote - Added sbctl
10 lines
141 B
Nix
10 lines
141 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
sbctl
|
|
];
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|