nix-flake/modules/home/desktop.nix
satr14 e13d03d362
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 20s
skip discord updater
2026-07-07 09:28:08 +08:00

40 lines
818 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
./core/browser.nix
];
home.file.".config/discord/settings.json".text = builtins.toJSON {
SKIP_HOST_UPDATE = true;
};
services = {
awww.enable = true;
hyprpolkitagent.enable = true;
};
home = {
packages = with pkgs; [
playerctl brightnessctl
networkmanagerapplet
qt6Packages.qt6ct kdePackages.qtstyleplugin-kvantum
nwg-displays
lxqt.pcmanfm-qt
hyprshot wl-clipboard cliphist
hyprshutdown
];
};
}