about summary refs log tree commit diff
path: root/machines/labnet/labtop.nix
blob: 2b7d931720ecd54cde687e446006f011f1df9b4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{ pkgs, lib, ... }:

let
  greybird = pkgs.stdenv.mkDerivation {
    name = "greybird-xfce-theme";

    src = pkgs.fetchFromGitHub {
      repo = "Greybird";
      owner = "shimmerproject";
      rev = "61ec18d22780aa87998381599c941e0cf4f7bfb5";
      sha256 = "03h8hba4lfp337a4drylcplrbggry9gz8dq1f3gjy25fhqkgvq05";
    };

    phases = [ "unpackPhase" "installPhase" ];

    installPhase = ''
      mkdir -p "$out/share/themes/Greybird" \
               "$out/share/themes/Greybird-compact/xfwm4"
      cp -vrt "$out/share/themes/Greybird" \
        gtk-* metacity-1 unity xfce-notify-4.0 xfwm4
      cp -vrt "$out/share/themes/Greybird-compact/xfwm4" \
        xfwm4_compact/*
    '';
  };

  modulesPath = "${import ../../nixpkgs-path.nix}/nixos/modules";

in {
  imports = [ "${modulesPath}/installer/scan/not-detected.nix" ];

  boot.loader.grub.device = "/dev/disk/by-id/ata-HITACHI_HTS722010K9SA00_080711DP0270DPGLVMPC";

  boot.kernelModules = [ "kvm-intel" ];
  boot.initrd.availableKernelModules = [
    "uhci_hcd" "ehci_pci" "ata_piix" "firewire_ohci" "usb_storage"
  ];

  i18n = {
    consoleFont = "lat9w-16";
    consoleKeyMap = "us";
    defaultLocale = "de_DE.UTF-8";
  };

  fileSystems."/" = {
    device = "/dev/disk/by-uuid/754fd3e3-2e04-4028-9363-0c6bb4c54367";
    fsType = "ext4";
  };

  environment.systemPackages = with pkgs; [
    #repetierhost <- TODO
    ack
    antimony
    blender
    filezilla
    firefox
    fish
    freecad
    gcc
    gnome3.gedit
    gimp
    git
    gmpc
    greybird
    inkscape
    ino
    (libreoffice.overrideDerivation (lib.const { doCheck = false; }))
    netcat-openbsd
    openscad
    printrun
    python3
    screen
    slic3r
    tmux
    vim
    vlc
    wget
  ];

  services.xserver = {
    enable = true;
    layout = "us";
    xkbOptions = "eurosign:e";

    displayManager.auto.enable = true;
    displayManager.auto.user = "openlab";
    desktopManager.xfce.enable = true;

    synaptics.enable = true;
    synaptics.minSpeed = "0.5";
    synaptics.accelFactor = "0.01";
  };


  hardware.trackpoint = {
    enable = true;
    emulateWheel = true;
    sensitivity = 130;
    speed = 350;
  };


  services.openssh.enable = true;

  networking.networkmanager.enable = true;
  networking.enableIntel3945ABGFirmware = true;
  networking.hostName = "labtop";
  networking.firewall.allowedTCPPorts = [ 1337 2342 ];
  networking.firewall.allowPing = true;

  nix.maxJobs = 2;

  users.mutableUsers = false;
  users.extraUsers.openlab = {
    uid = 1000;
    isNormalUser = true;
    password = "openlab";
    extraGroups = [ "wheel" "networkmanager" "dialout"];
    openssh.authorizedKeys.keys = lib.singleton (lib.concatStrings [

      "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDJhthfk38lzDvoI7lPqRneI0yBpZEhLD"
      "GRBpcXzpPSu+V0YlgrDix5fHhBl+EKfw4aeQNvQNuAky3pDtX+BDK1b7idbz9ZMCExy2a1"
      "kBKDVJz/onLSQxiiZMuHlAljVj9iU4uoTOxX3vB85Ok9aZtMP1rByRIWR9e81/km4HdfZT"
      "CjFVRLWfvo0s29H7l0fnbG9bb2E6kydlvjnXJnZFXX+KUM16X11lK53ilPdPJdm87VtxeS"
      "KZ7GOiBz6q7FHzEd2Zc3CnzgupQiXGSblXrlN22IY3IWfm5S/8RTeQbMLVoH0TncgCeenX"
      "H7FU/sXD79ypqQV/WaVVDYMOirsnh/ philip@nyx"
    ]);
  };

  # fix for emacs
  programs.bash.promptInit = "PS=\"# \"";
}