nixos-config/machine.nix
Kiana Sheibani b9acd932e9
refactor: remove type restriction on machine option
There's no real need to be so restrictive about what kinds of machine
names there can be.
2024-10-23 17:00:33 -04:00

8 lines
143 B
Nix

{ lib, ... }:
{
options.machine = lib.mkOption {
description = "The machine hostname to configure for";
type = lib.types.str;
};
}