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