system/outputs/system.nix

14 lines
231 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
{
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
];
};
}