22 lines
252 B
Nix
22 lines
252 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
user,
|
|
inputs,
|
|
flakeRoot,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
./boot.nix
|
|
./hardware-configuration.nix
|
|
./machine.nix
|
|
./dbus.nix
|
|
./audio.nix
|
|
./xdg.nix
|
|
inputs.home-manager.nixosModules.home-manager
|
|
];
|
|
}
|