{ pkgs, inputs, ... }: { imports = [ inputs.nvf.homeManagerModules.default inputs.nix-index-database.hmModules.nix-index ]; # Some info home.username = "crony"; home.homeDirectory = "/home/crony"; # PACKAGES # Enable syncthing services.syncthing.enable = true; # Default environmental variables home.sessionVariables = { EDITOR = "nvim"; WINEPREFIX = "$HOME/.local/share/wineprefix/default"; }; # Let Home Manager install and manage itself. programs.home-manager.enable = true; # Fix gtkrc-2.0 collision home.file."/home/crony/.gtkrc-2.0".force = true; # DO NOT CHANGE ALSO home.stateVersion = "24.11"; # Please read the comment before changing. }