HermitNix_DEPRECATED/Hosts/hertog-laptop/configuration.nix

21 lines
571 B
Nix

# This is your system's configuration file.
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
{ outputs, lib, config, pkgs, ... }:
{
# Set hostname
networking.hostName = "puter";
security.polkit.enable = true;
services.xserver.displayManager.sessionPackages = [ pkgs.sway ];
boot.kernelParams = [ "i915.force_probe=9a49" ];
hardware = {
opengl = {
enable = true;
driSupport32Bit = true;
};
};
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "23.05";
}