mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
16 lines
297 B
Nix
16 lines
297 B
Nix
{ config, lib, ... }:
|
|
{
|
|
imports = [
|
|
./config.nix
|
|
./keybinds.nix
|
|
];
|
|
|
|
options.myConfig.de.hyprland.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.myConfig.de.hyprland.enable {
|
|
myConfig.de = {
|
|
hypridlelock.enable = true;
|
|
waybar.enable = true;
|
|
};
|
|
};
|
|
}
|