dotfiles/config/nix/configuration.nix

10 lines
222 B
Nix
Raw Normal View History

2023-10-22 17:09:13 +02:00
{ config, pkgs, ... }:
2023-10-22 19:54:59 +02:00
let
recursiveMerge = import ./recursiveMerge.nix;
getModule = name: import (./modules + "/${name}.nix") { inherit config pkgs; };
in
recursiveMerge [
(getModule "common")
(getModule "x11")
]