dotfiles/modules/nixos/desktop/niri/default.nix

11 lines
188 B
Nix
Raw Normal View History

2025-10-01 19:51:55 -05:00
{ flake, ... }:
let
inherit (flake.config.aesthetics.themes.windowManager.enabled) niri;
in
{
2025-12-05 17:56:47 -06:00
imports = [
flake.inputs.niri.nixosModules.niri
];
2025-10-01 19:51:55 -05:00
programs.niri.enable = niri;
}