mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 13:12:10 -08:00
22 lines
319 B
Nix
22 lines
319 B
Nix
|
{
|
||
|
inputs,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./configuration.nix
|
||
|
../../../modules/linux
|
||
|
../../../hm
|
||
|
../../../overlays
|
||
|
{
|
||
|
home-manager.users.youwen = {
|
||
|
imports = [ ./home.nix ];
|
||
|
};
|
||
|
}
|
||
|
]
|
||
|
++ (with inputs; [
|
||
|
lanzaboote.nixosModules.lanzaboote
|
||
|
]);
|
||
|
}
|