nixos-config/hosts/kitty/users/main/default.nix
2025-02-25 05:39:25 -05:00

7 lines
174 B
Nix

{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}".home = {
desktop.enable = false;
stateVersion = lib.mkForce config.system.stateVersion;
};
}