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

36 lines
576 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
./containers
2024-09-26 00:04:39 +02:00
./other
2023-10-08 11:42:08 +02:00
./scripts.nix
./tmp.nix
./network.nix
2024-03-05 13:25:01 +01:00
./audio.nix
2023-10-08 11:42:08 +02:00
];
2024-03-11 16:19:31 +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;
2024-09-15 21:41:28 +02:00
services.logind.extraConfig = ''
NAutoVTs=4
ReserveVT=4
'';
2023-10-08 11:42:08 +02:00
}