31 lines
598 B
Nix
Executable file
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";
|
|
}
|