27 lines
472 B
Nix
27 lines
472 B
Nix
{ inputs, ... }:
|
|
let
|
|
inherit (inputs)
|
|
lanzaboote
|
|
nixos-hardware
|
|
home-manager
|
|
;
|
|
in
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./configuration.nix
|
|
./host.nix
|
|
./boot.nix
|
|
./hardware.nix
|
|
./packages.nix
|
|
./containers.nix
|
|
./desktop.nix
|
|
./users.nix
|
|
./secrets.nix
|
|
lanzaboote.nixosModules.lanzaboote
|
|
nixos-hardware.nixosModules.framework-13-7040-amd
|
|
home-manager.nixosModules.home-manager
|
|
../../home
|
|
];
|
|
}
|