This commit is contained in:
Matthew Bessette
2026-04-05 00:39:59 -04:00
parent 61fe69a5fd
commit 10da3b7da6
2 changed files with 7 additions and 1 deletions

View File

@@ -2,9 +2,12 @@
{ {
imports = [ imports = [
./hardware-configuration.nix # Crucial: Imports your UUIDs ./caesium.hardware.nix # Crucial: Imports your UUIDs
]; ];
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# --- BOOTLOADER --- # --- BOOTLOADER ---
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;

View File

@@ -64,6 +64,9 @@
modules = [ modules = [
./caesium.nixos.nix ./caesium.nixos.nix
{
nixpkgs.config.allowUnfree = true;
}
]; ];
}; };