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

10 lines
173 B
Nix
Raw Normal View History

2025-01-03 17:52:33 -05:00
{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}" = {
2025-01-21 12:02:11 -05:00
home = {
desktop.enable = true;
stateVersion = lib.mkForce "24.05";
};
2025-01-03 17:52:33 -05:00
};
}