From 10da3b7da613f5488bb464f51affeda774ccb4c6 Mon Sep 17 00:00:00 2001 From: Matthew Bessette Date: Sun, 5 Apr 2026 00:39:59 -0400 Subject: [PATCH] oops --- caesium.nixos.nix | 5 ++++- flake.nix | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/caesium.nixos.nix b/caesium.nixos.nix index b151beb..5a529ad 100644 --- a/caesium.nixos.nix +++ b/caesium.nixos.nix @@ -2,9 +2,12 @@ { 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 --- boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; diff --git a/flake.nix b/flake.nix index 4697fa1..e10a4d3 100644 --- a/flake.nix +++ b/flake.nix @@ -64,6 +64,9 @@ modules = [ ./caesium.nixos.nix + { + nixpkgs.config.allowUnfree = true; + } ]; };