nix/home-manager/common/desktops/hyprland/default.nix

11 lines
304 B
Nix
Raw Normal View History

2023-08-31 13:22:44 +02:00
{ pkgs, theme, ... }: {
imports = [
2023-09-29 05:46:20 +02:00
./themes/${theme}
2023-08-31 14:34:51 +02:00
# GTK theme applied in home-manager/common/software/cli/bash.nix
2023-09-29 05:46:20 +02:00
# Theme agnostic configs
2023-11-20 12:31:22 +01:00
./common/hyprland/hyprland-binds.nix
2023-09-29 05:46:20 +02:00
./common/swayosd/swayosd-conf.nix
./common/waybar/scripts.nix
2023-08-31 13:22:44 +02:00
];
2023-11-20 12:02:34 +01:00
}