8 lines
207 B
Nix
8 lines
207 B
Nix
{ config, lib, ... }:
|
|
{
|
|
home-manager.users."${config.sysusers.main}".home = {
|
|
desktop.enable = true;
|
|
remote-desktop.enable = true;
|
|
stateVersion = lib.mkForce config.system.stateVersion;
|
|
};
|
|
}
|