nixos-systems/modules/home/base.nix

11 lines
186 B
Nix
Raw Normal View History

{ config, configFiles, lib, pkgs, ... }:
with lib;
{
options.myModules.home.user = mkOption {
description = "The username of the user for building paths";
type = types.str;
};
}