13 lines
278 B
Nix
13 lines
278 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
{
|
|
# install noctalia and helper packages
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.noctalia.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
adw-gtk3
|
|
adwaita-qt
|
|
adwaita-qt6
|
|
brightnessctl
|
|
playerctl
|
|
];
|
|
}
|