{ config, inputs, lib, pkgs, ... }: { imports = [ ]; config = { programs = { home-manager.enable = true; }; home = { username = "chmura"; homeDirectory = "/home/chmura"; packages = with pkgs; [ git exa ripgrep btop firejail zellij cargo rustc nodejs unzip cmake gcc trash-cli ]; stateVersion = lib.mkDefault "23.11"; }; }; }