nixos-config/hosts/droid/users/main/default.nix

11 lines
272 B
Nix

{ config, lib, ... }:
{
avf.defaultUser = config.sysusers.main;
home-manager.users."${config.sysusers.main}".home = {
desktop.enable = true;
gaming.enable = true;
production.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
};
}