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