Compare commits

...

2 commits

Author SHA1 Message Date
Natsu Kagami 7d19c95472
Temporarily disable virtualbox
Not yet compatible with kernel 6.9, see NixOS/nixpkgs#312336
2024-05-24 16:33:42 +02:00
Natsu Kagami ef5af56cb6
Kakoune: make number-lines highlighter belong to window scope as peneira expects 2024-05-24 16:33:21 +02:00
2 changed files with 4 additions and 2 deletions

View file

@ -19,7 +19,9 @@ set-face global WhitespaceIndent +d@comment
set global ui_options terminal_assistant=cat
# Enable line numbers
addhl global/ number-lines
hook global WinCreate .* %{
addhl window/number-lines number-lines
}
set global grepcmd "rg --line-number --no-column --no-heading --color=never "

View file

@ -59,7 +59,7 @@ let
virtualisation.oci-containers.backend = "podman";
virtualisation.virtualbox.host.enable = !pkgs.stdenv.isAarch64;
virtualisation.virtualbox.host.enable = false;
users.extraGroups.vboxusers.members = [ cfg.username ];
};
};