15 lines
208 B
Nix
15 lines
208 B
Nix
{ lib, ... }:
|
|
{
|
|
options.home.sway.enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = "Enable SwayWM";
|
|
};
|
|
|
|
imports = [
|
|
./sway
|
|
./swaylock
|
|
./waybar
|
|
];
|
|
}
|