{ modulesPath, lib, ... }: { nixpkgs.system = "x86_64-linux"; imports = [ (modulesPath + "/profiles/qemu-guest.nix") ../profiles/common.nix ]; services.kiosk = { enable = true; urls = [ "http://carbon.hacklab:8081" "http://carbon.hacklab:8448" ]; }; disko.devices = { disk.disk1 = { device = lib.mkDefault "/dev/sda"; type = "disk"; content = { type = "gpt"; partitions = { boot = { name = "boot"; size = "1M"; type = "EF02"; }; esp = { name = "ESP"; size = "500M"; type = "EF00"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; }; }; root = { name = "root"; size = "100%"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; mountOptions = [ "defaults" ]; }; }; }; }; }; }; boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ]; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; networking = { hostName = "g1-bigscreen"; domain = lib.our.domains.local; useDHCP = true; }; }