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

15 lines
456 B
Nix
Raw Normal View History

2024-01-03 22:25:06 +09:00
{ pkgs, inputs, theme, ... }: {
2023-08-31 20:22:44 +09:00
imports = [
2024-01-03 22:25:06 +09:00
inputs.stylix.homeManagerModules.stylix
2023-09-29 12:46:20 +09:00
./themes/${theme}
2023-08-31 21:34:51 +09:00
# GTK theme applied in home-manager/common/software/cli/bash.nix
2023-09-29 12:46:20 +09:00
# Theme agnostic configs
2023-11-20 20:31:22 +09:00
./common/hyprland/hyprland-binds.nix
2023-09-29 12:46:20 +09:00
./common/swayosd/swayosd-conf.nix
./common/waybar/scripts.nix
2023-08-31 20:22:44 +09:00
];
2024-01-03 22:28:18 +09:00
2024-01-03 22:30:07 +09:00
stylix.image = /etc/nixos/git/wallpapers/default/wallpaper1.png;
2024-01-03 22:46:47 +09:00
stylix.autoEnable = true;
2023-11-20 20:02:34 +09:00
}