Tweaked waybar config for a prettier setup, added hyprpaper and black default background, improved nus/nrs

This commit is contained in:
2025-07-14 21:49:21 -07:00
parent 56c18519b3
commit 7df748762a
9 changed files with 203 additions and 75 deletions

View File

@@ -23,30 +23,27 @@
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
programs.hyprlock.enable = true;
programs.waybar.enable = true;
services.hypridle.enable = true;
environment.systemPackages = with pkgs; [
waybar
dunst
libnotify
rofi-wayland
nwg-look
nwg-displays
slurp
grim
arandr
wl-clipboard
wlogout
dunst
flameshot
wofi
swayimg
grim
hyprpaper
hyprpicker
kanshi
libnotify
mako
(pkgs.waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
}))
nwg-displays
nwg-look
rofi-wayland
slurp
swayimg
wl-clipboard
wlogout
wofi
];
}

View File

@@ -22,10 +22,10 @@
programs.bash.shellAliases = {
# Nix rebuild, switch
nrs = "pushd /etc/nixos && { trap 'popd' EXIT; sudo nixos-rebuild switch --flake .#$(hostname); }";
nrs = "bash -c \"cd /etc/nixos && sudo nixos-rebuild switch --flake .#$(hostname) ; exit\"";
# Nix flake update, rebuild, switch
nus = "cd /etc/nixos && sudo nix flake update && sudo nixos-rebuild switch --flake .#$(hostname)";
nus = "bash -c \"cd /etc/nixos && sudo nix flake update && sudo nixos-rebuild switch --flake .#$(hostname) ; exit\"";
# Special cleanup, needed when efi partition runs out of space. Deletes all but the last five generations.
# Remember to make that partition bigger in the future...