# vim: ts=2 { config, pkgs, home-manager, inputs, user_js, ... }: let # TODO actually use this in the user config username = "soispha"; homeDirectory = "/srv/home/${username}"; configHome = "${homeDirectory}/.config"; dataHome = "${homeDirectory}/.local/share"; in { imports = [ ./alacritty ./cups ./firefox ./gammastep ./git ./grades ./gtk ./keepassxc ./latexindent ./less ./lf ./mako ./mpd ./neovim ./npm ./python ./rclone ./river ./ssh ./swayidle ./swaylock ./yambar ./zsh ]; home = { inherit username homeDirectory; stateVersion = "23.05"; # TODO sessionVariables = { DISPLAY = ":0"; EDITOR = "nvim"; }; packages = []; }; xdg = { inherit configHome dataHome; enable = true; }; }