aboutsummaryrefslogtreecommitdiff
path: root/hosts/canadian-government-system
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-27 15:45:28 -0400
committerRosa <rosaontheweb@proton.me>2026-03-27 15:45:28 -0400
commit2fd54f7d97fede2648cc100cb5cb0adb374f0db9 (patch)
tree043c6204fa1099d2f9591f06a28de734c7cbc070 /hosts/canadian-government-system
parentb2328e74cca0151fdbaac48d0e5f750e12fbc97f (diff)
add a temporary hardware config
Diffstat (limited to 'hosts/canadian-government-system')
-rw-r--r--hosts/canadian-government-system/hardware-configuration.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/hosts/canadian-government-system/hardware-configuration.nix b/hosts/canadian-government-system/hardware-configuration.nix
new file mode 100644
index 0000000..de63775
--- /dev/null
+++ b/hosts/canadian-government-system/hardware-configuration.nix
@@ -0,0 +1,12 @@
+{ config, lib, modulesPath, pkgs, ... }:
+{
+ imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
+ boot.initrd.availableKernelModules = [
+ "xhci_pci"
+ "ahci"
+ "usbhid"
+ "sd_mod"
+ ];
+
+ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
+}