Restructured NixOS system configurations to be more modularized

This commit is contained in:
lulusilly 2025-09-13 19:23:00 -04:00
parent 4326a51ef7
commit 4cf7c21ed8
6 changed files with 94 additions and 176 deletions

View file

@ -0,0 +1,8 @@
{ config, pkgs, inputs, ... }
{
# SystemD-boot is good enough
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
systemd.tpm2.enable = false;
}