Files
dotfiles/home/linux/default.nix
2025-07-22 17:20:56 +05:30

30 lines
557 B
Nix

{
pkgs,
device,
...
}: let
linux_gui = device.hasGui && pkgs.stdenv.isLinux;
in {
imports = [
./hyprland.nix
./gtk.nix
./anyrun.nix
./ironbar
./gui.nix
./eww.nix
];
services.kdeconnect.enable = linux_gui;
services.kdeconnect.indicator = linux_gui;
home.packages = with pkgs;
lib.optionals linux_gui [
ncpamixer
];
# services.swayosd.enable = linux_gui;
# services.swaync.enable = linux_gui;
# services.nextcloud-client = {
# enable = device.hasGui;
# startInBackground = true;
# };
}