nixos-config/modules/options/default.nix
Erwin Boskma 4cd0f83ce8
Some checks failed
/ check (push) Failing after 2m46s
Run nixfmt
2024-02-05 11:46:52 +01:00

19 lines
359 B
Nix

{ lib, ... }:
with lib;
{
options.eboskma.var = {
mainUser = lib.mkOption {
type = lib.types.str;
default = "erwin";
description = ''
The main system user
'';
};
workSystem = lib.mkOption {
description = "Is this system for work or home?";
type = lib.types.bool;
default = false;
};
};
}