blob: 83a51e21729007eeb7ddced19ce63688a530cf42 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ config, lib, hostname, ... }:
let
userOptions = import ../hosts/${hostname}/userOptions.nix;
in
{
_module.args.userOptions = userOptions;
home.username = userOptions.username;
home.homeDirectory = userOptions.userHome;
}
|