mirror of https://github.com/materusPL/Nixerus.git
17 lines
363 B
Nix
17 lines
363 B
Nix
|
{inputs, materusFlake}:
|
||
|
|
||
|
let
|
||
|
profles = import ../profile;
|
||
|
in
|
||
|
{
|
||
|
materusPC = inputs.nixpkgs.lib.nixosSystem rec {
|
||
|
specialArgs = {inherit inputs; inherit materusFlake;};
|
||
|
system = "x86_64-linux";
|
||
|
modules = [
|
||
|
./materusPC
|
||
|
inputs.private.systemModule
|
||
|
profles.osProfile
|
||
|
];
|
||
|
};
|
||
|
|
||
|
}
|