nix/nixos/t14/configuration.nix
2023-05-21 04:30:01 -05:00

29 lines
611 B
Nix
Executable file

{ pkgs, nixos-hardware, host, ... }:
{
imports =
[
./hardware-configuration.nix
./nano.nix
];
networking.hostName = host.hostName;
networking.firewall = {
enable = true;
allowedTCPPorts = [];
allowedUDPPorts = [];
}
environment.systemPackages = with pkgs; [
cryptsetup
];
programs.light.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
};
hardware.opengl.enable = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
system.stateVersion = "22.11";
}