10 lines
167 B
Nix
10 lines
167 B
Nix
{
|
|
outputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [outputs.nixosModules.ewwbar];
|
|
programs.hyprland.enable = true;
|
|
environment.systemPackages = with pkgs; [hyprpaper];
|
|
}
|