12 lines
214 B
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;
|
|
}
|