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

14 lines
211 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
2024-06-06 16:53:15 +03:00
../users/vili.nix
../services/syncthing.nix
2024-06-02 05:53:39 +03:00
];
2024-05-23 13:39:48 +03:00
2024-06-02 16:18:19 +03:00
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
2024-05-23 13:39:48 +03:00
}