18 lines
276 B
Nix
18 lines
276 B
Nix
{ host, ... }:
|
|
let
|
|
inherit (import ../../../hosts/${host}/variables.nix) animChoice;
|
|
in
|
|
{
|
|
imports = [
|
|
animChoice
|
|
./binds.nix
|
|
./env.nix
|
|
./exec-once.nix
|
|
./hypridle.nix
|
|
./hyprland.nix
|
|
./hyprlock.nix
|
|
./pyprland.nix
|
|
./windowrules.nix
|
|
];
|
|
}
|