summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2025-12-30 01:40:54 +0100
committerandromeda <andromeda@lenovo>2025-12-30 01:40:54 +0100
commitcba7b6b8335797137b387e08fa7ac955cb5692b2 (patch)
tree56d592b1b1ba3cda072955d44e7b59086e36346c /machines
parent0179bbeb5c9dfaf27c232d8d125af467640ddbd5 (diff)
change machine specification
Diffstat (limited to 'machines')
-rw-r--r--machines/laptop/hardware-configuration.nix41
-rw-r--r--machines/laptop/machine.nix (renamed from machines/laptop.nix)1
2 files changed, 42 insertions, 0 deletions
diff --git a/machines/laptop/hardware-configuration.nix b/machines/laptop/hardware-configuration.nix
new file mode 100644
index 0000000..e0a98d9
--- /dev/null
+++ b/machines/laptop/hardware-configuration.nix
@@ -0,0 +1,41 @@
+# 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" "nvme" "sdhci_pci"];
+ boot.initrd.kernelModules = [];
+ boot.kernelModules = ["kvm-intel"];
+ boot.extraModulePackages = [];
+
+ fileSystems."/" = {
+ device = "none";
+ fsType = "tmpfs";
+ options = ["defaults" "size=60%" "mode=755"];
+ };
+
+ fileSystems."/nix" = {
+ device = "/dev/disk/by-uuid/0e586651-36f4-42b0-99b3-3f0704a894d6";
+ fsType = "btrfs";
+ };
+
+ fileSystems."/boot" = {
+ device = "/dev/disk/by-uuid/F425-55BA";
+ fsType = "vfat";
+ options = ["fmask=0022" "dmask=0022"];
+ };
+
+ swapDevices = [];
+
+ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
+ hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
+}
diff --git a/machines/laptop.nix b/machines/laptop/machine.nix
index c70deb9..d6b1e01 100644
--- a/machines/laptop.nix
+++ b/machines/laptop/machine.nix
@@ -2,4 +2,5 @@
hostname = "lenovo";
usernames = ["andromeda"];
system = "x86_64-linux";
+ hardware-configuration = ./hardware-configuration.nix;
}