mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
16 lines
236 B
Nix
16 lines
236 B
Nix
{
|
|
inputs,
|
|
tree,
|
|
...
|
|
}: {
|
|
imports =
|
|
(with tree.nixos.profiles; [
|
|
uefi
|
|
])
|
|
++ (with tree.nixos.hardware; [
|
|
amd
|
|
])
|
|
++ [
|
|
inputs.nixos-hardware.outputs.nixosModules.framework-13-7040-amd
|
|
];
|
|
}
|