system/outputs/system.nix

23 lines
484 B
Nix
Raw Normal View History

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
{
2022-09-25 23:38:57 +03:00
system-home = nixpkgs.lib.nixosSystem {
2022-08-30 00:17:21 +03:00
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/garbage-collector.nix
2022-08-30 00:17:21 +03:00
../system/machine/home
];
};
2022-09-25 23:38:57 +03:00
system-asus-gl553vd = nixpkgs.lib.nixosSystem {
2022-09-04 16:04:28 +03:00
inherit system;
modules = [
2022-09-26 03:48:38 +03:00
hardware.nixosModules.common-cpu-intel
2022-09-04 16:04:28 +03:00
../system/configuration.nix
2022-09-25 23:38:57 +03:00
../system/machine/asus_gl553vd
2022-09-04 16:04:28 +03:00
];
};
2022-08-30 00:17:21 +03:00
}