mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
11 lines
273 B
Nix
11 lines
273 B
Nix
|
|
{ modulesPath, config, pkgs, ... }:
|
||
|
|
{
|
||
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
||
|
|
|
||
|
|
boot.loader.grub.device = "/dev/sda";
|
||
|
|
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
|
||
|
|
|
||
|
|
boot.cleanTmpDir = true;
|
||
|
|
networking.firewall.allowPing = true;
|
||
|
|
}
|