22 lines
No EOL
229 B
Nix
22 lines
No EOL
229 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
options = {
|
|
desktop = {
|
|
sway = {
|
|
enable = lib.mkEnableOption "enable sway";
|
|
};
|
|
};
|
|
|
|
};
|
|
config = {
|
|
wayland.windowManager.niri = {
|
|
};
|
|
};
|
|
}; |