nixos-conf/machine-confs/nixos-cpu.nix

19 lines
276 B
Nix
Raw Normal View History

2024-05-23 13:39:48 +03:00
{ config, pkgs, ... }:
{
networking.hostName = "nixos-cpu";
imports = [
2024-05-29 17:33:21 +03:00
../base.nix
../development.nix
../vili.nix
2024-05-23 13:39:48 +03:00
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}