diff --git a/home-manager/dotfiles/waybar/config.jsonc b/home-manager/dotfiles/waybar/config.jsonc index 0220674..29eddbe 100644 --- a/home-manager/dotfiles/waybar/config.jsonc +++ b/home-manager/dotfiles/waybar/config.jsonc @@ -1,13 +1,13 @@ { "layer": "top", "modules-left": ["sway/workspaces", "sway/mode"], - "modules-center": [ ], - "modules-right": ["mpris", "wireplumber","cpu", "bluetooth", "network", "clock", "privacy"], + "modules-center": ["wireplumber", "mpris"], + "modules-right": ["cpu", "bluetooth", "network", "clock", "privacy"], "clock": { "format-alt": "{:%a, %d. %b %H:%M}" }, "wireplumber": { - "format": "{volume}% ", + "format": " {volume}%", "format-muted": "", "max-volume": 120, "scroll-step": 0.2 @@ -33,26 +33,6 @@ "tooltip-icon-size": 24 } ] - }, - "cpu": { - "format": "{}%  " - }, - "network": { - "interface": "wlp3s0", - "format": "{ifname}", - "format-wifi": "{essid} ({signalStrength}%)  ", - "format-ethernet": "{ipaddr}/{cidr} 󰊗", - "format-disconnected": "", //An empty format will hide the module. - "tooltip-format": "{ifname} via {gwaddr} 󰊗", - "tooltip-format-wifi": "{essid} ({signalStrength}%)  ", - "tooltip-format-ethernet": "{ifname}  ", - "tooltip-format-disconnected": "Disconnected", - "max-length": 50 - }, - "bluetooth": { - "format": "", - "format-disabled": "", - "format-connected": "" } } diff --git a/home-manager/dotfiles/waybar/style.css b/home-manager/dotfiles/waybar/style.css index c667dc8..5bcb99b 100644 --- a/home-manager/dotfiles/waybar/style.css +++ b/home-manager/dotfiles/waybar/style.css @@ -2,11 +2,11 @@ font-family: "CodeNewRoman Nerd Font"; font-weight: bold; font-size: 12px; - color: #000; + color: #fff; } window#waybar { - background-color: #fff; + background-color: #000; } @@ -15,15 +15,9 @@ window#waybar { } #workspaces button.focused { - border-bottom: solid 2px #7b002c; - border-radius: 0; + background-color: #7b002c; } #workspaces { padding: 4px 0; } - -window#waybar { - min-height: 14px; /* set waybar's height to 18px */ - font-size: 14px; /* set only the font size to be bigger, which in turn will adjust the height of other elements */ -} diff --git a/home-manager/home.nix b/home-manager/home.nix index 0961f3e..f18d650 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -63,19 +63,6 @@ pkgs.gammastep pkgs.lazygit - pkgs.xfce.thunar - pkgs.gimp-with-plugins - pkgs.fzf - pkgs.why3 - pkgs.alt-ergo - pkgs.cvc4 - pkgs.z3 - pkgs.prismlauncher - - pkgs.audacious - pkgs.audacious-plugins - - pkgs.krita # # You can also create simple shell scripts directly inside your # # configuration. For example, this adds a command 'my-hello' to your # # environment: diff --git a/hosts/goober/features/hardware/pipewire.nix b/hosts/goober/features/hardware/pipewire.nix index 3c80aa4..08ba1e1 100644 --- a/hosts/goober/features/hardware/pipewire.nix +++ b/hosts/goober/features/hardware/pipewire.nix @@ -4,7 +4,6 @@ services.pipewire.enable = false; hardware.pulseaudio.enable = true; hardware.pulseaudio.support32Bit = true; - services.pipewire.wireplumber.enable = true; environment.systemPackages = [ pkgs.pwvucontrol diff --git a/hosts/goober/features/software/default.nix b/hosts/goober/features/software/default.nix index 7333f70..84fecea 100644 --- a/hosts/goober/features/software/default.nix +++ b/hosts/goober/features/software/default.nix @@ -1,7 +1,6 @@ {config, ...}: { imports = [ - ./wine.nix ./neovim.nix ./flatpak.nix ./discord.nix diff --git a/hosts/goober/features/software/wine.nix b/hosts/goober/features/software/wine.nix deleted file mode 100644 index 4eeec14..0000000 --- a/hosts/goober/features/software/wine.nix +++ /dev/null @@ -1,27 +0,0 @@ -{config, pkgs, ...}: -{ - environment.systemPackages = with pkgs; [ - # ... - - # support both 32- and 64-bit applications - wineWowPackages.stable - - # support 32-bit only - wine - - # support 64-bit only - (wine.override { wineBuild = "wine64"; }) - - # support 64-bit only - wine64 - - # wine-staging (version with experimental features) - wineWowPackages.staging - - # winetricks (all versions) - winetricks - - # native wayland support (unstable) - wineWowPackages.waylandFull -]; -} diff --git a/hosts/sisyphe/features/services/irc-server.nix b/hosts/sisyphe/features/services/irc-server.nix index f69b01e..cebf4ea 100644 --- a/hosts/sisyphe/features/services/irc-server.nix +++ b/hosts/sisyphe/features/services/irc-server.nix @@ -1,7 +1,5 @@ {config, pkgs, ...}: { - environment.systemPackages = with pkgs; [ ircdHybrid ]; - services.ircdHybrid = { enable = true; serverName = "irc.hypervirtual.world";