21 lines
325 B
Nix
21 lines
325 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./niri.nix
|
|
./noctalia.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
xdg-desktop-portal
|
|
brightnessctl
|
|
qt6Packages.qt6ct
|
|
libsForQt5.qt5ct
|
|
catppuccin-qt5ct
|
|
xwayland-satellite
|
|
playerctl
|
|
];
|
|
|
|
xsession = {
|
|
enable = true;
|
|
windowManager.command = "niri";
|
|
};
|
|
}
|