disable neovide until we add the script

This commit is contained in:
Bit Borealis 2023-08-24 06:44:32 +00:00
parent 2b77d3c1cf
commit 229089a13b
Signed by: theotheroracle
GPG Key ID: 2D816A2DCA6E5649
2 changed files with 26 additions and 8 deletions

View File

@ -64,6 +64,7 @@ with import ./modules/neovim-config.nix { inherit pkgs lib fromGitHub; };
pano
unite
user-avatar-in-quick-settings
gamemode
]));
home.file = { # If managing individual files is needed
@ -72,6 +73,12 @@ with import ./modules/neovim-config.nix { inherit pkgs lib fromGitHub; };
home.sessionVariables = {
# fish config
fish_greeting = " heya ${config.home.username}, welcome to $(hostnamectl --pretty) ~";
EDITOR = "nvim";
NIXPKGS_ALLOW_UNFREE = 1;
GAMEMODERUNEXEC = "nvidia-offload";
};
# configure dconf
# use dconf watch / to monitor for changes
@ -79,6 +86,7 @@ with import ./modules/neovim-config.nix { inherit pkgs lib fromGitHub; };
dconf.settings = with lib.hm.gvariant; {
"org/gnome/shell" = {
disable-user-extensions = false;
disable-extension-version-validation = true;
enabled-extensions = [
"rounded-window-corners@yilozt"
"gsconnect@andyholmes.github.io"
@ -86,6 +94,7 @@ with import ./modules/neovim-config.nix { inherit pkgs lib fromGitHub; };
"pano@elhan.io"
"quick-settings-avatar@d-go"
"appindicatorsupport@rgcjonas.gmail.com"
"gamemode@christian.kellner.me"
];
disabled-extensions = [];
favorite-apps = [
@ -262,6 +271,8 @@ with import ./modules/neovim-config.nix { inherit pkgs lib fromGitHub; };
nxc = "sudo nix-collect-garbage -d";
};
shellAliases = {
edit = "$EDITOR $argv";
csk = "cd (sk -e)";
nxu = ''sudo sh -c "nixos-rebuild boot --upgrade --log-format internal-json -v |& nom --json"'';
nxw = ''sudo sh -c "nixos-rebuild switch --log-format internal-json -v |& nom --json"'';
@ -300,13 +311,6 @@ if test \( -e $NG/0 \) -a \( -e $NG/1 \)
else
echo missing NG files
end
'';
edit = ''
if test $XDG_SESSION_TYPE != tty
$VISUAL $argv
else
$EDITOR $argv
end
'';
fish_prompt = ''
set -l last_status $status
@ -330,7 +334,6 @@ fish_add_path ~/.local/bin/scripts
fish_add_path ~/.local/share/cargo/bin
fish_add_path /var/lib/flatpak/exports/bin
fish_vi_key_bindings
set -gx VISUAL neovide --nofork --geometry=84x28 --frame=none --multigrid
'';
};
programs.password-store = {

15
neovide_backtraces.log Normal file
View File

@ -0,0 +1,15 @@
2023-08-24 06:26:18 - Neovide panicked with the message 'Failed to initialize any backend! Wayland status: NoCompositor X11 status: XOpenDisplayFailed'. (File: /build/neovide-0.11.1-vendor.tar.gz/winit/src/platform_impl/linux/mod.rs; Line: 795, Column: 9)
0: neovide::main::{{closure}}
1: std::panicking::rust_panic_with_hook
2: std::panicking::begin_panic_handler::{{closure}}
3: std::sys_common::backtrace::__rust_end_short_backtrace
4: rust_begin_unwind
5: core::panicking::panic_fmt
6: neovide::window::create_window
7: neovide::main
8: std::sys_common::backtrace::__rust_begin_short_backtrace
9: main
10: __libc_start_call_main
11: __libc_start_main@@GLIBC_2.34
12: _start