Fixed broken icons
This commit is contained in:
parent
a419c28d0d
commit
27f215f02c
|
@ -13,7 +13,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
aa.desktop.addons.fonts.enable = true;
|
aa.system.fonts.enable = true;
|
||||||
|
|
||||||
# alacritty won't start without opengl
|
# alacritty won't start without opengl
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
|
|
|
@ -13,7 +13,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
aa.desktop.addons.fonts.enable = true;
|
aa.system.fonts.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [mako libnotify];
|
environment.systemPackages = with pkgs; [mako libnotify];
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
aa.desktop.addons.fonts.enable = true;
|
aa.system.fonts.enable = true;
|
||||||
|
|
||||||
aa.home = {
|
aa.home = {
|
||||||
extraOptions = {
|
extraOptions = {
|
||||||
|
@ -77,7 +77,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
cpu = {
|
cpu = {
|
||||||
format = "{usage}% ";
|
format = "{usage}% ";
|
||||||
tooltip = false;
|
tooltip = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -129,8 +129,8 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
network = {
|
network = {
|
||||||
format-wifi = "直 ";
|
format-wifi = " ";
|
||||||
format-ethernet = "{ifname}: {ipaddr}/{cidr} ";
|
format-ethernet = "{ifname}: {ipaddr}/{cidr} ";
|
||||||
format-linked = "{ifname} (No IP) ";
|
format-linked = "{ifname} (No IP) ";
|
||||||
format-disconnected = "睊 ";
|
format-disconnected = "睊 ";
|
||||||
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
format-alt = "{ifname}: {ipaddr}/{cidr}";
|
||||||
|
|
|
@ -35,7 +35,6 @@ in {
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
aa.desktop.addons = {
|
aa.desktop.addons = {
|
||||||
alacritty.enable = true;
|
alacritty.enable = true;
|
||||||
fonts.enable = true;
|
|
||||||
gammastep.enable = true;
|
gammastep.enable = true;
|
||||||
mako.enable = true;
|
mako.enable = true;
|
||||||
playerctl.enable = true;
|
playerctl.enable = true;
|
||||||
|
@ -49,6 +48,8 @@ in {
|
||||||
# pamixer
|
# pamixer
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aa.system.fonts.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [wl-clipboard];
|
environment.systemPackages = with pkgs; [wl-clipboard];
|
||||||
|
|
||||||
aa.home.dataFile = {
|
aa.home.dataFile = {
|
||||||
|
|
|
@ -6,9 +6,9 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib; let
|
with lib; let
|
||||||
cfg = config.aa.desktop.addons.fonts;
|
cfg = config.aa.system.fonts;
|
||||||
in {
|
in {
|
||||||
options.aa.desktop.addons.fonts = with types; {
|
options.aa.system.fonts = with types; {
|
||||||
enable = mkEnableOption "manage fonts";
|
enable = mkEnableOption "manage fonts";
|
||||||
};
|
};
|
||||||
|
|
|
@ -33,10 +33,6 @@
|
||||||
|
|
||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone = "America/Los_Angeles";
|
||||||
|
|
||||||
fonts.fonts = with pkgs; [
|
|
||||||
(nerdfonts.override {fonts = ["Hack"];})
|
|
||||||
];
|
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
Loading…
Reference in a new issue