System/machines/x86vm/configuration.nix

16 lines
312 B
Nix

{ config, lib, pkgs, ... }:
{
nathan = {
programs = { games = true; };
config = {
isDesktop = true;
nix.autoUpdate = false;
};
};
home-manager.users.nathan = import ./home.nix;
# Workaround to get sway working in qemu
environment.variables = { "WLR_RENDERER" = "pixman"; };
}