Files
nix/modules/nih/programs/default.nix
Gustavo "Guz" L. de Mello 7698ba668f feat: "nix host" module start
2024-04-04 16:56:03 -03:00

14 lines
162 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.nih.programs;
in
{
imports = [
./hyprland.nix
./lf.nix
];
options.programs = { };
config = { };
}