started p14s transition

This commit is contained in:
John Lancaster
2026-03-25 17:29:37 -05:00
parent 31df60a718
commit f8c09878a1
5 changed files with 219 additions and 74 deletions
+16
View File
@@ -0,0 +1,16 @@
{ self, inputs, ... }: {
flake-file.inputs = {
nixos-hardware = {
url = "github:NixOS/nixos-hardware";
flake = false;
};
};
flake.nixosConfigurations.john-p14s = inputs.nixpkgs.lib.nixosSystem {
modules = [
"${inputs.nixos-hardware}/lenovo/thinkpad/p14s"
"${inputs.nixos-hardware}/lenovo/thinkpad/p14s/amd/gen4"
self.modules.nixos.p14sConfiguration
];
};
}