17 lines
247 B
Nix
17 lines
247 B
Nix
{ hostConfig, ... }:
|
|
let
|
|
cfg = hostConfig;
|
|
in {
|
|
imports = [
|
|
./sway.nix
|
|
./mako.nix
|
|
./waybar.nix
|
|
./swaylock.nix
|
|
./swayidle.nix
|
|
./fuzzel.nix
|
|
] ++ (
|
|
if hostConfig.laptop then
|
|
[ ./kanshi.nix ]
|
|
else []
|
|
);
|
|
}
|