mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
10 lines
188 B
Nix
Executable file
10 lines
188 B
Nix
Executable file
{ flake, ... }:
|
|
let
|
|
inherit (flake.config.aesthetics.themes.windowManager.enabled) niri;
|
|
in
|
|
{
|
|
imports = [
|
|
flake.inputs.niri.nixosModules.niri
|
|
];
|
|
programs.niri.enable = niri;
|
|
}
|