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

33 lines
522 B
Nix

{ config, pkgs, lib, ... }:
{
imports =
[
./hardware
./vm
./secrets
./containers
./scripts.nix
./tmp.nix
./network.nix
./kde.nix
./audio.nix
./apps.nix
];
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;
}