36 lines
576 B
Nix
36 lines
576 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
|
|
./hardware
|
|
./vm
|
|
./secrets
|
|
./containers
|
|
./other
|
|
|
|
./scripts.nix
|
|
./tmp.nix
|
|
./network.nix
|
|
|
|
./audio.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;
|
|
|
|
services.logind.extraConfig = ''
|
|
NAutoVTs=4
|
|
ReserveVT=4
|
|
'';
|
|
|
|
}
|