14 lines
162 B
Nix
14 lines
162 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.nih.programs;
|
|
in
|
|
{
|
|
imports = [
|
|
./hyprland.nix
|
|
./lf.nix
|
|
];
|
|
options.programs = { };
|
|
config = { };
|
|
}
|