Various fixes
This commit is contained in:
parent
0137b1996f
commit
2709850f43
|
@ -10,7 +10,7 @@ with lib;
|
|||
let
|
||||
isQwerty = keymap == "us";
|
||||
gnomeSchema = "org.gnome.desktop.interface";
|
||||
rendererLine = if nvidiaGPU then "export WLR_RENDERER=vulkan" else "";
|
||||
rendererLine = "export WLR_RENDERER=vulkan";
|
||||
monitorModule = types.submodule {
|
||||
options = {
|
||||
name = mkOption { type = types.str; };
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{ lib, config, ... }:
|
||||
{ lib, config, pkgs, ... }:
|
||||
with lib;
|
||||
{
|
||||
programs.helix.settings = mkIf config.programs.helix.enable { theme = "nord"; };
|
||||
home.sessionVariables."EDITOR" = "${pkgs.helix}/bin/hx";
|
||||
}
|
||||
|
|
|
@ -15,7 +15,6 @@ with lib;
|
|||
'';
|
||||
};
|
||||
|
||||
config.home.sessionVariables."EDITOR" = mkIf config.desktop.enableNeovim "${pkgs.neovim}/bin/nvim";
|
||||
|
||||
config.programs.neovim = mkIf config.desktop.enableNeovim {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue