diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-03-30 15:12:01 -0400 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-03-30 15:12:01 -0400 |
| commit | 2b5b1da02c4c86563569b8feca7beb91f98c5977 (patch) | |
| tree | 5f8cb230dd9c6f7449a67c5231b00b8ebab37366 /hosts/canadian-government-system/hardware-configuration.nix | |
| parent | 849624093f6afd2c498bbff8662550bf3fd87c33 (diff) | |
Maybe it's not dead yet
This reverts commit 849624093f6afd2c498bbff8662550bf3fd87c33.
Diffstat (limited to 'hosts/canadian-government-system/hardware-configuration.nix')
| -rw-r--r-- | hosts/canadian-government-system/hardware-configuration.nix | 18 |
1 files changed, 18 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..88db163 --- /dev/null +++ b/hosts/canadian-government-system/hardware-configuration.nix @@ -0,0 +1,18 @@ +{ + 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"; +} |
