Kiana Sheibani
fb7b45f98d
Instead of merely naming my systems "laptop", "desktop", etc. (boring), I now have them named after Aristotelian elements (cool). This also gives me an excuse to refactor my flake file.
8 lines
177 B
Nix
8 lines
177 B
Nix
{ lib, ... }:
|
|
{
|
|
options.machine = lib.mkOption {
|
|
description = "The machine hostname to configure for";
|
|
type = lib.types.enum [ "earth" "fire" "air" "water" ];
|
|
};
|
|
}
|