Fix some deprecation warnings
This commit is contained in:
parent
48282bcea5
commit
5a37a4d482
@ -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 = ''
|
||||
|
@ -17,28 +17,27 @@
|
||||
|
||||
programs.htop = {
|
||||
enable = true;
|
||||
meters.left = [
|
||||
"LeftCPUs"
|
||||
"Blank"
|
||||
"Memory"
|
||||
{
|
||||
kind = "Uptime";
|
||||
mode = 4;
|
||||
}
|
||||
];
|
||||
meters.right = [ "RightCPUs" "Blank" "CPU" ];
|
||||
fields = [
|
||||
"USER"
|
||||
"PRIORITY"
|
||||
"NICE"
|
||||
"M_RESIDENT"
|
||||
"PERCENT_MEM"
|
||||
"PERCENT_CPU"
|
||||
"TIME"
|
||||
"COMM"
|
||||
];
|
||||
delay = 10;
|
||||
cpuCountFromZero = true;
|
||||
settings = {
|
||||
cpu_count_from_zero = true;
|
||||
delay = 10;
|
||||
fields = [
|
||||
"USER"
|
||||
"PRIORITY"
|
||||
"NICE"
|
||||
"M_RESIDENT"
|
||||
"PERCENT_MEM"
|
||||
"PERCENT_CPU"
|
||||
"TIME"
|
||||
"COMM"
|
||||
];
|
||||
left_meters = [
|
||||
"LeftCPUs"
|
||||
"Blank"
|
||||
"Memory"
|
||||
"Uptime"
|
||||
];
|
||||
right_meters = [ "RightCPUs" "Blank" "CPU" ];
|
||||
};
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
|
@ -91,6 +91,8 @@ in
|
||||
utsushi
|
||||
epkowa
|
||||
hplipWithPlugin
|
||||
brscan4
|
||||
dsseries
|
||||
];
|
||||
};
|
||||
}
|
||||
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user