nixos-config/configurations/host/materusPC/default.nix

31 lines
488 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
2023-10-08 11:42:08 +02:00
{
imports =
[
./hardware
./vm
2024-03-02 22:36:43 +01:00
./secrets
2023-10-08 11:42:08 +02:00
./scripts.nix
./tmp.nix
./network.nix
./kde.nix
2024-03-05 13:25:01 +01:00
./audio.nix
2023-10-08 11:42:08 +02:00
];
2024-03-02 22:36:43 +01:00
2023-10-08 11:42:08 +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;
}