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

20 lines
303 B
Nix
Raw Normal View History

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