Files
shed/modules/home/hyprland/default.nix

16 lines
232 B
Nix

{
inputs,
host,
...
}: let
host_config =
if (host == "oganesson")
then [./desktop.nix]
else [./laptop.nix];
in {
imports =
[(import ./hyprland.nix)]
# ++ [(import ./hyprpaper.nix)]
++ host_config;
}