18 lines
313 B
Nix
18 lines
313 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./ewwbar.nix
|
|
./pipewire.nix
|
|
{
|
|
programs.hyprland = {
|
|
enable = true;
|
|
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
|
};
|
|
environment.systemPackages = with pkgs; [hyprpaper xwaylandvideobridge socat];
|
|
}
|
|
];
|
|
}
|