This will replace existing per-module user configuration. Or, rather, it already did for git.
10 lines
186 B
Nix
10 lines
186 B
Nix
{ config, configFiles, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.myModules.home.user = mkOption {
|
|
description = "The username of the user for building paths";
|
|
type = types.str;
|
|
};
|
|
}
|