refactor home/terminal refactor home/apps refactor home/services refactor home/games
22 lines
345 B
Nix
22 lines
345 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";
|
|
};
|
|
}
|