nix/nixos/t14/configuration.nix
2023-07-22 05:35:03 -05:00

31 lines
598 B
Nix
Executable file

{ pkgs, nixos-hardware, host, ... }:
{
imports =
[
./hardware-configuration.nix
./nano.nix
];
environment.systemPackages = with pkgs; [
cryptsetup
];
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
programs.light.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
};
programs.ssh = {
startAgent = true;
};
hardware.opengl.enable = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
system.stateVersion = "22.11";
}