about summary refs log tree commit diff
path: root/modules/workstation/default.nix
blob: fc35497b3d53d6e1e6329661139d8ae13b567483 (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
{ lib, pkgs, ... }:

{
  imports = [
    ../nix ../shell ../users ../ssh
    ./documentation ./windowing ./fonts ./gh ./hardware ./locale
    ./dict ./emacs ./gnupg ./lorri ./mail ./mpv ./weechat
  ];

  boot.kernelParams = [ "preempt=full" ];

  environment.systemPackages = with pkgs; [
    dino ffmpeg mosh mpv nix-index qemu youtube-dl
  ];

  services.getty.autologinUser = "qyliss";
  services.getty.loginOptions = "-- \\u";
  services.locate.enable = true;

  time.timeZone = "Europe/Berlin";

  virtualisation.podman.enable = true;

  programs.system-config-printer.enable = true;
  services.postgresql.enable = true;
  services.printing.enable = true;
  services.printing.drivers = with pkgs; [ foo2zjs ];
}