NixOS-Config/modules/home/wms/default.nix

29 lines
476 B
Nix
Raw Normal View History

{ lib, ... }:
2024-11-12 18:03:28 -05:00
{
options.home = {
sway.enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Enable SwayWM";
};
niri = {
enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Enable SwayWM";
};
settings = lib.mkOption {
type = lib.types.attrs;
default = {};
};
};
};
2024-11-12 18:03:28 -05:00
imports = [
./niri
./programs
2024-11-12 18:03:28 -05:00
./sway
];
}