2023-05-18 12:07:07 +02:00
|
|
|
{ config, pkgs, lib, inputs, materusFlake, ... }:
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[
|
|
|
|
|
|
|
|
./hardware
|
2023-07-03 21:49:46 +02:00
|
|
|
./vm
|
2023-05-18 12:07:07 +02:00
|
|
|
|
2023-06-07 00:53:21 +02:00
|
|
|
./scripts.nix
|
2023-05-18 12:07:07 +02:00
|
|
|
./tmp.nix
|
2023-05-18 22:38:32 +02:00
|
|
|
./network.nix
|
2023-05-18 12:07:07 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
system.copySystemConfiguration = false;
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
|
|
|
|
|
|
|
|
materus.profile.nix.enable = true;
|
|
|
|
materus.profile.nixpkgs.enable = true;
|
2023-05-18 22:29:52 +02:00
|
|
|
materus.profile.fonts.enable = true;
|
|
|
|
materus.profile.steam.enable = true;
|
2023-05-18 12:07:07 +02:00
|
|
|
|
|
|
|
}
|