.dotfiles/nix/system/linux_x86.nix
Martin Larsson c4d7f5d082 Major refactor to flake, abstract non-trivial packages into their own
files (such as firefox/spotify-qt+librespot), create utils for reusable
function library
2025-05-11 18:19:19 +02:00

27 lines
427 B
Nix

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