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

20 lines
295 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-06-02 01:31:02 +03:00
../syncthing.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;
}