nixconf/systems/x86_64-linux/sushiroll/default.nix

21 lines
363 B
Nix

{ ... }:
{
imports = [
./hardware.nix
];
config = {
mtxyz = {
platform = {
private = true;
portable = true;
minimal = true;
};
graphical.desktop = "gnome";
};
# Alt key broken on laptop. Caps lock is already super, so super is alt.
services.xserver.xkb.options = "altwin:swap_alt_win";
};
}