mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
9 lines
147 B
Nix
9 lines
147 B
Nix
|
{ inputs', ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
(inputs'.nixpkgs + "/nixos/modules/profiles/qemu-guest.nix")
|
||
|
];
|
||
|
|
||
|
boot.initrd.kernelModules = ["nvme"];
|
||
|
}
|