Nixerus/configurations/host/materusPC/default.nix

25 lines
455 B
Nix
Raw Normal View History

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;
materus.profile.fonts.enable = true;
materus.profile.steam.enable = true;
2023-05-18 12:07:07 +02:00
}