2022-09-01 11:17:54 +03:00
|
|
|
{ inputs, system, ... }:
|
2022-08-30 00:17:21 +03:00
|
|
|
|
2022-09-01 11:17:54 +03:00
|
|
|
with inputs;
|
2022-08-30 00:17:21 +03:00
|
|
|
{
|
|
|
|
systemHome = nixpkgs.lib.nixosSystem {
|
|
|
|
inherit system;
|
|
|
|
modules = [
|
2022-09-01 11:17:54 +03:00
|
|
|
dedsec-grub-theme.nixosModule
|
2022-08-30 00:17:21 +03:00
|
|
|
../system/configuration.nix
|
|
|
|
../system/machine/home
|
|
|
|
];
|
|
|
|
};
|
2022-09-04 16:04:28 +03:00
|
|
|
usbStick = nixpkgs.lib.nixosSystem {
|
|
|
|
inherit system;
|
|
|
|
modules = [
|
|
|
|
../system/configuration.nix
|
|
|
|
../system/machine/usb-stick
|
|
|
|
];
|
|
|
|
};
|
2022-08-30 00:17:21 +03:00
|
|
|
}
|