7 lines
135 B
Nix
7 lines
135 B
Nix
{ config, ... }:
|
|
{
|
|
home-manager.users."${config.vars.mainUser}".home = {
|
|
desktop.enable = true;
|
|
school.enable = true;
|
|
};
|
|
}
|