1
1
Fork 0
nixos/options/custom/desktops/default.nix
Myned 506b2efafc
sway: initial migration to forgejo
Signed-off-by: Myned <dev@bjork.tech>
2024-11-06 11:52:43 -06:00

11 lines
152 B
Nix

{
config,
lib,
...
}:
with lib; {
config.custom.desktops = mkIf config.custom.full {
hyprland.enable = true;
sway.enable = true;
};
}