Fix some deprecation warnings

This commit is contained in:
notgne2 2021-08-14 14:17:56 -07:00
parent 48282bcea5
commit 5a37a4d482
No known key found for this signature in database
GPG Key ID: BB661E172B42A7F8
4 changed files with 28 additions and 24 deletions

View File

@ -54,7 +54,10 @@ in
programs.mako.font = "${cfg.favFont.name} ${toString cfg.favFont.size}";
wayland.windowManager.sway.config.fonts = [ cfg.favFont.name ];
wayland.windowManager.sway.config.fonts = {
names = [ cfg.favFont.name ];
size = cfg.favFont.size + 0.0;
};
xsession.windowManager.i3.config.fonts = [ cfg.favFont.name ];
programs.neovim.extraConfig = ''

View File

@ -17,16 +17,9 @@
programs.htop = {
enable = true;
meters.left = [
"LeftCPUs"
"Blank"
"Memory"
{
kind = "Uptime";
mode = 4;
}
];
meters.right = [ "RightCPUs" "Blank" "CPU" ];
settings = {
cpu_count_from_zero = true;
delay = 10;
fields = [
"USER"
"PRIORITY"
@ -37,8 +30,14 @@
"TIME"
"COMM"
];
delay = 10;
cpuCountFromZero = true;
left_meters = [
"LeftCPUs"
"Blank"
"Memory"
"Uptime"
];
right_meters = [ "RightCPUs" "Blank" "CPU" ];
};
};
programs.git = {

View File

@ -91,6 +91,8 @@ in
utsushi
epkowa
hplipWithPlugin
brscan4
dsseries
];
};
}

View File

@ -115,6 +115,6 @@ in
services.blueman.enable = true;
hardware.bluetooth.enable = true;
hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-modules-bt ];
hardware.bluetooth.config.General.Enable = "Source,Sink,Media,Socket";
hardware.bluetooth.settings.General.Enable = "Source,Sink,Media,Socket";
};
}