16 lines
326 B
Nix
16 lines
326 B
Nix
{ settings, ylib, ... }:
|
|
{
|
|
imports =
|
|
# Common settings all users share
|
|
[ (settings.usersDir + "/_common/home.nix") ]
|
|
# User programs
|
|
++ ylib.umport {
|
|
paths = [ ./programs ];
|
|
recursive = true;
|
|
}
|
|
# User theme
|
|
++ ylib.umport {
|
|
paths = [ ./theme ];
|
|
recursive = true;
|
|
};
|
|
}
|