nixos-conf/machine-confs/ntfy.nix

13 lines
179 B
Nix
Raw Normal View History

2024-09-06 20:10:45 +03:00
{ config, pkgs, ... }:
{
networking.hostName = "ntfy";
imports = [
../base.nix
../services/ntfy.nix
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
}