13 lines
231 B
Nix
13 lines
231 B
Nix
{ inputs, system, ... }:
|
|
|
|
with inputs;
|
|
{
|
|
systemHome = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = [
|
|
dedsec-grub-theme.nixosModule
|
|
../system/configuration.nix
|
|
../system/machine/home
|
|
];
|
|
};
|
|
}
|