modified: home/git.nix modified: hosts/README.md modified: hosts/virtualbox/README.md modified: hosts/virtualbox/configuration.nix modified: modules/core/users.nix modified: modules/desktop/pkg.nix modified: modules/server/README.md modified: profiles/README.md
15 lines
339 B
Nix
15 lines
339 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
../../profiles/virtualbox.nix
|
|
];
|
|
|
|
networking.hostName = "virtualbox";
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
# Machine-specific config generated by nixos-generate-config can be
|
|
# merged here: disk layout, boot loader, filesystem, hardware options.
|
|
}
|