dynamic module imports
parent
448d806201
commit
cddc4d6b1e
|
@ -1,22 +1,14 @@
|
||||||
{ lib, ... }:
|
{ lib, ... }:
|
||||||
|
|
||||||
|
with builtins; with lib; let
|
||||||
|
dirEntries = removeAttrs (readDir ./.) [ "default.nix" ];
|
||||||
|
moduleEntries = attrsets.filterAttrs (n: v: v == "regular") dirEntries;
|
||||||
|
moduleNames = attrNames moduleEntries;
|
||||||
|
|
||||||
|
modulePaths = map (name: ./${name}) moduleNames;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = modulePaths;
|
||||||
./neovim.nix
|
|
||||||
./filetypes.nix
|
|
||||||
./alacritty.nix
|
|
||||||
./fish.nix
|
|
||||||
./git.nix
|
|
||||||
./tmux.nix
|
|
||||||
./user.nix
|
|
||||||
./theme.nix
|
|
||||||
./projects.nix
|
|
||||||
./easyeffects.nix
|
|
||||||
./lazygit.nix
|
|
||||||
./dunst.nix
|
|
||||||
./sops.nix
|
|
||||||
./ssh.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue