# Only config stuff you cannot config with dotfiles # Or stuff that does not interfere with the dotfiles { config, pkgs, inputs, ... }: { imports = [ # Load all the to be installed packages # inputs.xremap-flake.homeManagerModules.default ]; home = { username = "horst"; homeDirectory = "/home/horst"; sessionVariables = { EDITOR = "nvim"; }; }; # Let Home Manager install and manage itself. programs.home-manager.enable = true; home.stateVersion = "24.11"; }