30 lines
557 B
Nix
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;
|
|
# };
|
|
}
|