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

12 lines
214 B
Nix

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