FIX fish config

This commit is contained in:
Alexandre LUCAZEAU 2023-07-15 21:11:10 +02:00
parent d9a33394ec
commit 10d7de15b8
1 changed files with 4 additions and 1 deletions

View File

@ -76,6 +76,9 @@
programs = { programs = {
fish.enable = true; fish.enable = true;
fish.interactiveShellInit = ''
set -gx EDITOR nvim
'';
ssh = { ssh = {
setXAuthLocation = true; setXAuthLocation = true;
forwardX11 = true; forwardX11 = true;
@ -99,9 +102,9 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
google-fonts google-fonts
xorg.xbacklight
]; ];
environment.variables.EDITOR = "nvim";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
} }