dotfiles/nixos/options.nix
Cyryl Płotnicki 3ead6500a8
Some checks failed
use nix / build (push) Failing after 6m0s
migrate to using module options for the username
2024-10-02 21:35:56 +01:00

10 lines
126 B
Nix

{
lib,
pkgs,
...
}: {
options.local.username = lib.mkOption {
default = "cyryl";
type = lib.types.str;
};
}