mirror of
https://github.com/youwen5/liminalOS.git
synced 2025-06-20 14:09:51 -07: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
|
||
|
]);
|
||
|
}
|