13 lines
179 B
Nix
13 lines
179 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
networking.hostName = "ntfy";
|
||
|
|
||
|
imports = [
|
||
|
../base.nix
|
||
|
../services/ntfy.nix
|
||
|
];
|
||
|
|
||
|
# HARDWARE SPECIFIC
|
||
|
services.qemuGuest.enable = true;
|
||
|
}
|