system/outputs/system.nix
janabhumi eb38fe9e68
system: move garbage collector to a separate module
don't use garbage collector on laptop yet
2022-09-27 23:26:36 +03:00

23 lines
484 B
Nix

{ inputs, system, ... }:
with inputs;
{
system-home = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
dedsec-grub-theme.nixosModule
../system/configuration.nix
../system/garbage-collector.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
];
};
}