.dotfiles/nix/system/linux_x86.nix

23 lines
353 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./common/nvidia.nix
];
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
networking.hostName = "walnut-nixos";
programs = {
sway.extraOptions = [
"--unsupported-gpu"
];
steam.enable = true;
};
}