config.nix/modules/window_manager/import_wm.nix
martyTF db5366102b forgor to stage changes
but git management in vscodium do be fire ngl
2025-12-16 16:51:22 +01:00

30 lines
418 B
Nix

{
config,
lib,
pkgs,
...
}:
let
modules =
if config.networking.hostName == "marty-pc" then
[
./hyprland.nix
./waybar.nix
]
else if config.networking.hostName == "marty-latitude" then
[
./hyprland.nix
./waybar.nix
]
else if config.networking.hostName == "marty-server" then
[
]
else
[ ];
in
{
imports = modules;
}