nix-flake/modules/home/desktop.nix
2026-05-04 11:16:32 +07:00

35 lines
707 B
Nix

{ pkgs, ... }: {
imports = [
./rice/compositor.nix
./rice/lockscreen.nix
./rice/keybinds.nix
./rice/logout.nix
./rice/notifs.nix
./rice/cursor.nix
./rice/theme.nix
./rice/menu.nix
./rice/idle.nix
./rice/bar.nix
./misc/handlers.nix
./misc/phone.nix
./core/apps.nix
./core/code.nix
];
services = {
awww.enable = true;
hyprpolkitagent.enable = true;
};
home = {
packages = with pkgs; [
playerctl brightnessctl
networkmanagerapplet tailscale-systray
qt6Packages.qt6ct kdePackages.qtstyleplugin-kvantum
nwg-displays
lxqt.pcmanfm-qt
hyprshot wl-clipboard cliphist
hyprshutdown
];
};
}