summaryrefslogtreecommitdiff
path: root/hosts/piframe/hardware-configuration.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2025-12-09 22:29:31 -0600
committerTim Keller <tjk@tjkeller.xyz>2025-12-09 22:29:31 -0600
commit4484d67427d620c0cf3e85897c6fc84b4898939a (patch)
treee4bb76c1d4a87f4049b3c045263f8fc424f6e7b8 /hosts/piframe/hardware-configuration.nix
parent6d6a802a5fe7257718e2a748692fb17889b500db (diff)
parent3a9347935a837a59bfe874f85b12c18e5fd697f9 (diff)
downloadnixos-master.tar.xz
nixos-master.zip
Merge branch 'piframe'HEADmaster
Diffstat (limited to 'hosts/piframe/hardware-configuration.nix')
-rw-r--r--hosts/piframe/hardware-configuration.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/hosts/piframe/hardware-configuration.nix b/hosts/piframe/hardware-configuration.nix
new file mode 100644
index 0000000..ceb755a
--- /dev/null
+++ b/hosts/piframe/hardware-configuration.nix
@@ -0,0 +1,24 @@
+# Do not modify this file! It was generated by ‘nixos-generate-config’
+# and may be overwritten by future invocations. Please make changes
+# to /etc/nixos/configuration.nix instead.
+{ config, lib, pkgs, modulesPath, ... }:
+
+{
+ imports =
+ [ (modulesPath + "/installer/scan/not-detected.nix")
+ ];
+
+ boot.initrd.availableKernelModules = [ "xhci_pci" "usbhid" ];
+ boot.initrd.kernelModules = [ ];
+ boot.kernelModules = [ ];
+ boot.extraModulePackages = [ ];
+
+ fileSystems."/" =
+ { device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
+ fsType = "ext4";
+ };
+
+ swapDevices = [ ];
+
+ nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
+}