13 lines
213 B
Nix
13 lines
213 B
Nix
{ imports, host, ... }:
|
|
let
|
|
inherit (import ../../../hosts/${host}/variables.nix) animChoice;
|
|
in
|
|
{
|
|
imports = [
|
|
animChoice
|
|
./binds.nix
|
|
./hyprland.nix
|
|
./hyprlock.nix
|
|
./windowrules.nix
|
|
];
|
|
}
|