forest/hosts/alex/configuration.nix

42 lines
892 B
Nix
Raw Normal View History

2023-10-02 17:47:47 +00:00
{ config, pkgs, ... }: {
imports = [
../../common/generic.nix
../../common/generic-desktop.nix
2023-10-02 19:28:51 +00:00
../../common/generic-uefi.nix
2023-10-12 16:23:49 +00:00
../../common/tailscale.nix
2023-10-08 16:35:48 +00:00
../../common/tpm.nix
2023-10-12 19:36:26 +00:00
../../roles/podman.nix
2023-10-02 18:20:14 +00:00
./hardware-config.nix
2023-10-02 17:47:47 +00:00
];
networking.hostName = "alex";
networking.firewall.enable = false;
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
services.xserver = {
enable = true;
displayManager.gdm.enable = true;
desktopManager.gnome.enable = true;
layout = "gb";
# xkbVariant = "";
};
services.printing.enable = true;
hardware.bluetooth.enable = true;
2023-10-02 17:47:47 +00:00
programs.steam.enable = true;
nixpkgs.config.allowUnfree = true;
system.stateVersion = "22.11";
}