- [ ] fix workspace 4 icon
- [ ] fix startup tmux session
-
+### waybar
+- [ ] fix the bar to run properly and display time accurately
+### rofi wayland
+- [ ] fix this crap to be better
## Fish
- [ ] keybind to accept autocomplete other than right arrow
+
+
+## Neovim
+- [ ] combine tmux and neovim status bar
pkgs,
inputs,
...
-}: let
-dotfiles.mutable = true;
-dotfiles.path = "${config.home.homeDirectory}/.dotfiles";
- filePath = "${config.dotfiles.path}/astronvim-config";
- configSrc =
- config.lib.file.mkOutOfStoreSymlink filePath;
-in {
- xdg.configFile."nvim".source = ./astronvim-config;
+}: {
+ home.file.".config/nvim".source = config.lib.file.mkOutOfStoreSymlink "/home/andrew/.dotfiles/astronvim-config";
+ programs.ripgrep.enable = true;
+ programs.lazygit.enable = true;
+ programs.bottom.enable = true;
+
+ # home.persistence."/persist${config.home.homeDirectory}" = {
+ # directories = [
+ # ".local/share/nvim"
+ # ".local/state/nvim"
+ # ".cache/nvim"
+ # ];
+ # };
programs.neovim = {
enable = true;
+ withPython3 = true;
+ withNodeJs = true;
defaultEditor = true;
};
}