Moved waybar config to own file. Added playerctl to system, removed hardware config from git
This commit is contained in:
parent
0808c2b3b8
commit
a9ad4efed3
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
|
hardware-configuration.nix
|
||||||
result
|
result
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./terminal
|
./terminal
|
||||||
|
./hyprland
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
@ -77,11 +78,11 @@
|
|||||||
swaynotificationcenter
|
swaynotificationcenter
|
||||||
pipewire
|
pipewire
|
||||||
wireplumber
|
wireplumber
|
||||||
|
playerctl # Interaction with audio players and browsers
|
||||||
xdg-utils
|
xdg-utils
|
||||||
xdg-desktop-portal-gtk
|
xdg-desktop-portal-gtk
|
||||||
xdg-desktop-portal-hyprland
|
xdg-desktop-portal-hyprland
|
||||||
hyprpolkitagent
|
hyprpolkitagent
|
||||||
waybar
|
|
||||||
rofi-wayland
|
rofi-wayland
|
||||||
kdePackages.dolphin
|
kdePackages.dolphin
|
||||||
kdePackages.qtwayland
|
kdePackages.qtwayland
|
||||||
|
7
hyprland/default.nix
Normal file
7
hyprland/default.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./waybar.nix
|
||||||
|
];
|
||||||
|
}
|
13
hyprland/waybar.nix
Normal file
13
hyprland/waybar.nix
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{pkgs, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
waybar
|
||||||
|
font-awesome # Icons
|
||||||
|
];
|
||||||
|
|
||||||
|
fonts.packages = with pkgs; [
|
||||||
|
font-awesome
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user