{ inputs , outputs , lib , config , pkgs , ... }: { home = { username = "kalle"; homeDirectory = "/home/kalle"; }; imports = [ ../../nvim ../../eww ]; nixpkgs = { overlays = with outputs.overlays; [ nvim-plugins ]; config = { allowUnfree = true; allowUnfreePredicate = _: true; }; }; # The home.packages option allows you to install Nix packages into your # environment. home.packages = with pkgs; [ discord firefox httpie kate kitty rustup prismlauncher ]; programs.home-manager.enable = true; programs.bash.enable = true; programs.git = { enable = true; userName = "Kalle Struik"; userEmail = "kalle@kallestruik.nl"; extraConfig = { init.defaultBranch = "main"; }; }; home.sessionVariables = { EDITOR = "nvim"; }; # This value determines the Home Manager release that your configuration is # compatible with. This helps avoid breakage when a new Home Manager release # introduces backwards incompatible changes. # # You should not change this value, even if you update Home Manager. If you do # want to update the value, then make sure to first check the Home Manager # release notes. home.stateVersion = "23.05"; # Please read the comment before changing. }