13 lines
No EOL
247 B
Nix
13 lines
No EOL
247 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.services.testservice = {
|
|
enable = mkEnableOption "Enable test service";
|
|
};
|
|
|
|
config = mkIf config.services.testservice.enable {
|
|
environment.etc."test.txt".text = "Hello world.";
|
|
};
|
|
} |