25 lines
412 B
Nix
25 lines
412 B
Nix
|
{
|
||
|
modulesPath,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||
|
(modulesPath + "/profiles/qemu-guest.nix")
|
||
|
./disk-config.nix
|
||
|
];
|
||
|
boot.loader.grub = {
|
||
|
efiSupport = true;
|
||
|
efiInstallAsRemovable = true;
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = map lib.lowPrio [
|
||
|
pkgs.curl
|
||
|
pkgs.neovim
|
||
|
pkgs.gitMinimal
|
||
|
];
|
||
|
|
||
|
system.stateVersion = "24.05";
|
||
|
}
|