nixos/machines/thinkman/system.nix

16 lines
242 B
Nix
Raw Normal View History

2022-12-05 22:53:04 +01:00
# enabled system services
{ config, lib, ... }:
let
secrets = config.sops.secrets;
in
{
my.system = {
2022-12-25 12:18:45 +01:00
avahi.enable = true;
2022-12-05 22:53:04 +01:00
podman.enable = true;
virtualization = {
enable = true;
cpuFlavor = "intel";
};
2022-12-05 22:53:04 +01:00
};
}