21 lines
446 B
Nix
21 lines
446 B
Nix
{ inputs, system, ... }:
|
|
|
|
with inputs;
|
|
{
|
|
system-home = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = [
|
|
dedsec-grub-theme.nixosModule
|
|
../system/configuration.nix
|
|
../system/machine/home
|
|
];
|
|
};
|
|
system-asus-gl553vd = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = [
|
|
hardware.nixosModules.common-cpu-intel
|
|
../system/configuration.nix
|
|
../system/machine/asus_gl553vd
|
|
];
|
|
};
|
|
}
|