miau
This commit is contained in:
parent
8683bfee42
commit
63de3a8832
9 changed files with 817 additions and 65 deletions
|
@ -61,8 +61,12 @@ in with lib; {
|
|||
};
|
||||
config = mkIf cfg.enable {
|
||||
fonts.fonts = with pkgs; [
|
||||
nerdfonts montserrat noto-fonts atkinson-hyperlegible
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
montserrat
|
||||
noto-fonts
|
||||
atkinson-hyperlegible
|
||||
];
|
||||
fonts.fontDir.enable = true;
|
||||
|
||||
i18n.inputMethod = {
|
||||
enabled = "fcitx5";
|
||||
|
@ -151,7 +155,7 @@ in with lib; {
|
|||
# from environment.systemPackages cleanup
|
||||
font-manager xdotool xorg.xwininfo gparted librewolf firefox uhk-agent
|
||||
cool-retro-term xdg-desktop-portal-gtk nheko obsidian virt-manager
|
||||
ddccontrol-db firebird-emu godot gitg gpick qdirstat ffmpeg_5
|
||||
ddccontrol-db firebird-emu godot gitg gpick qdirstat ffmpeg_5
|
||||
|
||||
|
||||
# external
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
"module/memory" = {
|
||||
type = "internal/memory";
|
||||
interval = 2;
|
||||
format-prefix = " ";
|
||||
format-prefix = " ";
|
||||
format-prefix-foreground = "\${colors.primary}";
|
||||
label = "%percentage_used:2%%";
|
||||
};
|
||||
|
@ -79,7 +79,7 @@
|
|||
"module/cpu" = {
|
||||
type = "internal/cpu";
|
||||
interval = "2";
|
||||
format-prefix = " ";
|
||||
format-prefix = " ";
|
||||
format-prefix-foreground = "\${colors.primary}";
|
||||
label = "%percentage:2%%";
|
||||
};
|
||||
|
@ -106,14 +106,14 @@
|
|||
adapter = "ADP1";
|
||||
time-format = "%H:%M";
|
||||
label-charging = "%percentage%% %time%";
|
||||
format-charging = "<ramp-capacity> ﮣ <label-charging>";
|
||||
format-charging = "<ramp-capacity> <label-charging>";
|
||||
label-discharging = "%percentage%% %time%";
|
||||
format-discharging = "<ramp-capacity> <label-discharging>";
|
||||
label-full = "%percentage%%";
|
||||
format-full = " <label-full>";
|
||||
format-full = " <label-full>";
|
||||
label-low = "%percentage%%";
|
||||
format-low = " <label-low>";
|
||||
ramp.capacity = [ "" "" "" "" "" "" "" "" "" "" ];
|
||||
format-low = " <label-low>";
|
||||
ramp.capacity = [ "" "" "" "" "" "" "" "" "" "" ];
|
||||
};
|
||||
|
||||
"module/date" = {
|
||||
|
|
|
@ -28,10 +28,14 @@ in with lib; {
|
|||
};
|
||||
keys.normal = {
|
||||
space."=" = ":fmt";
|
||||
"H" = "goto_line_start";
|
||||
"L" = "goto_line_end";
|
||||
};
|
||||
};
|
||||
languages = {
|
||||
language = [{
|
||||
name = "rust";
|
||||
config = { rust-analyzer.check.command = "clippy"; };
|
||||
}];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue