Files
dotfiles/config/home-manager/packages/workstation/default.nix
Menno van Leeuwen 2ce4cfb608
Some checks failed
Nix Format Check / check-format (push) Failing after 40s
refactor: update dotfiles paths and remove obsolete configurations
2025-03-05 17:26:48 +01:00

16 lines
358 B
Nix

{ ... }:
let
files = builtins.removeAttrs (builtins.readDir ./.) [
"default.nix"
"ulauncher.nix" # Disabled, since we switched to ansible for this
];
# Import all other .nix files as modules
moduleFiles = builtins.map (fname: ./. + "/${fname}") (builtins.attrNames files);
in
{
# Import all the package modules
imports = moduleFiles;
}