23 lines
347 B
Nix
23 lines
347 B
Nix
{ ... }:
|
|
{
|
|
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;
|
|
};
|
|
}
|