diff --git a/machine-confs/ntfy.nix b/machine-confs/ntfy.nix new file mode 100644 index 0000000..f26d2b2 --- /dev/null +++ b/machine-confs/ntfy.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: +{ + networking.hostName = "ntfy"; + + imports = [ + ../base.nix + ../services/ntfy.nix + ]; + + # HARDWARE SPECIFIC + services.qemuGuest.enable = true; +} diff --git a/services/ntfy.nix b/services/ntfy.nix new file mode 100644 index 0000000..74a3b06 --- /dev/null +++ b/services/ntfy.nix @@ -0,0 +1 @@ +{ config, pkgs, ... }: { }