Skip to content

Instantly share code, notes, and snippets.

@orivej
Created December 16, 2017 20:40
Show Gist options
  • Select an option

  • Save orivej/a8331d4028255f4d806101d0ff496ce8 to your computer and use it in GitHub Desktop.

Select an option

Save orivej/a8331d4028255f4d806101d0ff496ce8 to your computer and use it in GitHub Desktop.
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
solvespace
];
users.users.user = {
uid = 1000;
isNormalUser = true;
password = "";
};
services.xserver = {
enable = true;
layout = "us";
# xkbVariant = "dvorak";
windowManager.icewm.enable = true;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment