nix-flake/modules/home/desktop.nix
satr14 16bba9d9f3
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 2m18s
fix bat pct and cpu overheating; add vim line numbers and cli themes to
default
2026-04-07 17:14:16 +07:00

34 lines
686 B
Nix

{ pkgs, ... }: {
imports = [
./rice/compositor.nix
./rice/lockscreen.nix
./rice/keybinds.nix
./rice/logout.nix
./rice/notifs.nix
./rice/cursor.nix
./rice/menu.nix
./rice/idle.nix
./rice/bar.nix
./misc/handlers.nix
./misc/phone.nix
./core/apps.nix
./core/code.nix
];
services = {
swww.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
];
};
}