nixos-config/modules/home/hyprland/default.nix

12 lines
301 B
Nix
Raw Normal View History

2025-11-18 10:47:46 +01:00
{ inputs, ... }:
2023-11-05 17:56:55 +01:00
{
2025-11-18 10:47:46 +01:00
imports =
[ (import ./hyprland.nix) ]
2023-11-05 11:40:44 +01:00
++ [ (import ./config.nix) ]
++ [ (import ./scripts.nix) ]
2023-11-05 11:40:44 +01:00
++ [ (import ./variables.nix) ]
2025-11-18 10:47:46 +01:00
++ [ (import ./../hyprsunset.nix) ]
++ [ (import ./../hyprlock.nix) ]
2023-11-05 11:40:44 +01:00
++ [ inputs.hyprland.homeManagerModules.default ];
}