mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
17 lines
300 B
Nix
17 lines
300 B
Nix
{ config, pkgs, lib, ... }: with lib;
|
|
{
|
|
|
|
wayland.windowManager.sway = {
|
|
config = rec {
|
|
# update for actual inputs here,
|
|
|
|
# workspaceOutputAssign = [
|
|
# { output = "eDP-1"; workspace = "1:一"; }
|
|
# { output = "DP-4"; workspace = "2:二"; }
|
|
# ];
|
|
|
|
|
|
|
|
};
|
|
};
|
|
}
|