diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-03-27 15:45:28 -0400 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-03-27 15:45:28 -0400 |
| commit | 2fd54f7d97fede2648cc100cb5cb0adb374f0db9 (patch) | |
| tree | 043c6204fa1099d2f9591f06a28de734c7cbc070 /hosts | |
| parent | b2328e74cca0151fdbaac48d0e5f750e12fbc97f (diff) | |
add a temporary hardware config
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/canadian-government-system/hardware-configuration.nix | 12 |
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"; +} |
